-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "aira-app",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"upload:internal": "for REMOTE in '51'; do scp -r dist/* $REMOTE:/opt/aira/airaApp/www/; done",
"deploy": "pnpm build && pnpm upload",
"deploy:internal": "pnpm build && pnpm upload:internal",
"preview": "vite preview",
"release": "bumpp --commit --tag --push",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint 'src/**/*.{ts,vue}'",
"lint:fix": "eslint --fix .",
"up": "taze major -I"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"date-fns": "^4.1.0",
"ky": "^1.7.2",
"pinia": "^2.3.0",
"v-scale-screen": "^2.3.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-step-progress": "^1.0.2",
"vxe-pc-ui": "^4.3.69",
"vxe-table": "^4.10.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@coreui/coreui-pro": "^5.8.0",
"@coreui/icons": "^3.0.1",
"@coreui/icons-vue": "^2.2.0",
"@coreui/vue-pro": "^5.9.0",
"@iconify-json/carbon": "^1.2.4",
"@iconify-json/cil": "^1.2.1",
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@unocss/eslint-config": "^0.65.1",
"@unocss/eslint-plugin": "^0.65.1",
"@unocss/reset": "^0.65.1",
"@vitejs/plugin-vue": "^5.2.1",
"bumpp": "^9.9.2",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"lint-staged": "^15.2.10",
"pnpm": "^9.14.4",
"sass": "^1.82.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"typescript": "~5.7.2",
"unocss": "^0.65.1",
"unocss-preset-scrollbar": "^0.3.1",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-component-type-helpers": "^2.1.10",
"vue-i18n": "^10.0.5",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"vite": "^6.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}