-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "vite-vue-h5-app",
"version": "0.0.3",
"license": "MIT",
"author": "xiaofei",
"description": "xiaofei",
"copyright": "'vite + vue + ts + vant' template",
"scripts": {
"preinstall": "npx only-allow yarn",
"dev": "vite --host",
"build:prod": "vite build --mode production",
"tsc": "vue-tsc --noEmit",
"serve": "vite preview",
"prepare": "husky install",
"commit": "git-cz",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"stylelint": "stylelint ./src/**/*.{scss,css,less,vue} --fix",
"prettier": "prettier . --write",
"test:unit": "cypress open-ct",
"test:unit:ci": "cypress run-ct --quiet --reporter spec",
"test:e2e": "start-server-and-test serve 5050 'cypress open'",
"test:e2e:ci": "start-server-and-test serve 5050 'cypress run'"
},
"dependencies": {
"accounting": "^0.4.1",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"eslint-define-config": "^1.17.0",
"good-storage": "^1.1.1",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"numeral": "^2.0.6",
"pinia": "^2.0.33",
"postcss-html": "^1.5.0",
"vant": "^4.1.1",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@cypress/vite-dev-server": "^5.0.5",
"@cypress/vue": "^5.0.5",
"@types/accounting": "^0.4.2",
"@types/good-storage": "^1.1.0",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.15.5",
"@types/nprogress": "^0.2.0",
"@types/numeral": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cypress": "^12.8.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.21",
"postcss-less": "^6.0.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.8.5",
"rollup-plugin-visualizer": "^5.9.0",
"start-server-and-test": "^2.0.0",
"stylelint": "^15.3.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-less": "^1.0.6",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.5.0",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"unplugin-vue-define-options": "^1.2.4",
"vconsole": "^3.15.0",
"vite": "^4.2.1",
"vite-jest": "^0.1.4",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.2.0"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"lint-staged": {
"./src/**/*{.js,.jsx,.ts,.tsx}": [
"npm run lint"
]
},
"engines": {
"node": ">=16",
"yarn": "<2"
}
}