-
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.22.0",
"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": "^14.2.1",
"axios": "^1.13.2",
"dayjs": "^1.11.19",
"pinia": "^3.0.4",
"radashi": "^12.7.1",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@coderwyd/eslint-config": "^4.11.1",
"@sxzz/prettier-config": "^2.2.6",
"@types/node": "^22.19.1",
"@unocss/eslint-plugin": "^66.5.9",
"@vitejs/plugin-vue": "^6.0.2",
"@vitejs/plugin-vue-jsx": "^5.1.2",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-oxlint": "^1.28.0",
"lint-staged": "^16.2.7",
"oxlint": "^1.28.0",
"prettier": "^3.6.2",
"sass": "^1.94.2",
"simple-git-hooks": "^2.13.1",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"unocss": "^66.5.9",
"unplugin-auto-import": "^20.2.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^7.2.4",
"vite-plugin-html": "^3.2.2",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.1.5"
},
"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"
}