-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "vue-starter",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"scripts": {
"bootstrap": "npm install",
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:test": "vite build --mode test",
"build:prod": "vite build",
"preview": "npm run build && vite preview",
"preview:dist": "vite preview",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^11.3.0",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"pinia": "^2.3.1",
"qs": "^6.14.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@coderwyd/eslint-config": "^3.1.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.10",
"@types/qs": "^6.9.18",
"@unocss/eslint-plugin": "^0.65.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"fs-extra": "^11.3.0",
"lint-staged": "^15.4.3",
"picocolors": "^1.1.1",
"sass": "^1.83.4",
"simple-git-hooks": "^2.11.1",
"terser": "^5.37.0",
"typescript": "^5.7.3",
"unocss": "^0.65.4",
"unplugin-auto-import": "^0.19.0",
"unplugin-icons": "^0.22.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^5.4.14",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^7.7.1",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}