-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 KB
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
{
"name": "vue-starter",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.18.3",
"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.9.0",
"axios": "^1.12.2",
"dayjs": "^1.11.18",
"pinia": "^3.0.3",
"radashi": "^12.7.0",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@coderwyd/eslint-config": "^4.4.1",
"@sxzz/prettier-config": "^2.2.4",
"@types/node": "^22.18.12",
"@unocss/eslint-plugin": "^66.5.4",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"dotenv": "^17.2.3",
"eslint": "^9.38.0",
"eslint-plugin-oxlint": "^1.22.0",
"lint-staged": "^16.2.6",
"oxlint": "^1.22.0",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"simple-git-hooks": "^2.13.1",
"terser": "^5.44.0",
"typescript": "^5.9.3",
"unocss": "^66.5.4",
"unplugin-auto-import": "^20.2.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^7.1.12",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^8.0.3",
"vue-tsc": "^3.1.2"
},
"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"
},
"prettier": "@sxzz/prettier-config"
}