-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "my-vue-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:beta": "vite build --mode beta",
"build:localbeta": "vite build --mode localbeta",
"preview": "vite preview",
"preview :beta": "vite preview --mode beta",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.6.2",
"pinia": "^2.1.7",
"pinia-storage-plugin": "^0.0.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9",
"rollup-plugin-visualizer": "^5.9.2",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-less": "^2.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^2.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.1",
"vite": "^4.4.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"eslint --fix"
],
"*.vue": [
"eslint",
"eslint --fix",
"stylelint --fix"
]
}
}