-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"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": "pnpm run lint:oxlint && pnpm run lint:eslint",
"lint:eslint": "eslint .",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:fix": "eslint . --fix",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^13.1.0",
"axios": "^1.8.4",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"pinia": "^3.0.2",
"qs": "^6.14.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@coderwyd/eslint-config": "^4.2.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.1",
"@types/qs": "^6.9.18",
"@unocss/eslint-plugin": "^66.0.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"eslint": "^9.25.1",
"eslint-plugin-oxlint": "^0.16.6",
"fs-extra": "^11.3.0",
"lint-staged": "^15.5.1",
"oxlint": "^0.16.6",
"picocolors": "^1.1.1",
"sass": "^1.86.3",
"simple-git-hooks": "^2.12.1",
"terser": "^5.39.0",
"typescript": "^5.8.3",
"unocss": "^66.0.0",
"unplugin-auto-import": "^19.1.2",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.4.1",
"vite": "^6.2.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^7.7.5",
"vue-tsc": "^2.2.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
],
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"side-channel": "npm:@nolyfill/side-channel@^1.0.44"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}