-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.8 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "laky-admin-vue",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9.12.0"
},
"scripts": {
"bootstrap": "pnpm install",
"openapi": "dotenv -e .env.development.local laky openapi",
"dev": "vite --mode development",
"build": "vue-tsc -b && vite build --mode production",
"build:test": "vue-tsc -b && vite build --mode test",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint --ignore-pattern .gitignore --fix",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@onion-interceptor/pipes": "^1.0.4",
"@vueuse/core": "^10.11.1",
"ant-design-vue": "^4.2.5",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"laky": "^0.3.6",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"object-hash": "^3.0.0",
"onion-interceptor": "^1.0.4",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^3.2.3",
"vue": "^3.5.12",
"vue-i18n": "10.0.0-beta.5",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@iconify-json/ant-design": "^1.2.3",
"@lakyjs/components-vue-hooks": "workspace:*",
"@lakyjs/components-vue-layout": "workspace:*",
"@lakyjs/components-vue-utils": "workspace:*",
"@lakyjs/eslint-config": "^0.0.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/nprogress": "^0.2.3",
"@types/object-hash": "^3.0.6",
"@unocss/eslint-config": "^0.64.1",
"@unocss/preset-icons": "^0.64.1",
"@unocss/transformer-directives": "^0.64.1",
"@unocss/transformer-variant-group": "^0.64.1",
"@vitejs/plugin-vue": "^5.1.5",
"@vitejs/plugin-vue-jsx": "^4.1.0",
"dotenv-cli": "^7.4.2",
"eslint": "^9.14.0",
"glob": "^11.0.0",
"globals": "^15.12.0",
"lint-staged": "^15.2.10",
"picocolors": "^1.1.1",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"swagger-typescript-api": "^13.0.22",
"typescript": "^5.6.3",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^2.1.10",
"workbox-window": "^7.3.0"
},
"simple-git-hooks": {
"post-merge": "pnpm install",
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx laky check --commit-msg"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --no-warn-ignored --ignore-pattern .gitignore --fix"
]
},
"volta": {
"node": "20.16.0",
"pnpm": "9.3.0"
}
}