-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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.1.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"pinia": "^2.2.6",
"qs": "^6.13.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@coderwyd/eslint-config": "^3.1.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/qs": "^6.9.17",
"@unocss/eslint-plugin": "^0.63.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.10",
"picocolors": "^1.1.1",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"unocss": "^0.63.6",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^7.6.3",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}