-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 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
75
76
77
78
79
{
"name": "admin-prime",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"msw:init": "npx msw init public/ --save",
"type-check": "vue-tsc -b",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --no-warn-ignored",
"lint:fix": "eslint . --fix --no-warn-ignored",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"@primeuix/themes": "^2.0.3",
"@primevue/forms": "^4.5.4",
"@tailwindcss/vite": "^4.1.18",
"@vueuse/core": "^14.2.1",
"axios": "^1.13.5",
"chart.js": "^4.5.1",
"dompurify": "^3.3.1",
"lodash-es": "^4.17.23",
"nprogress": "^0.2.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"tailwindcss": "^4.1.18",
"tailwindcss-primeui": "^0.6.1",
"vue": "^3.5.25",
"vue-advanced-cropper": "^2.8.9",
"vue-draggable-plus": "^0.6.1",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@primevue/auto-import-resolver": "^4.5.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.10.1",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"msw": "^2.12.10",
"prettier": "^3.8.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^6.0.5",
"sharp": "^0.34.5",
"svgo": "^4.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^31.0.0",
"vite": "^7.3.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-image-optimizer": "^2.0.3",
"vite-plugin-inspect": "^11.3.3",
"vite-plugin-vue-devtools": "^8.0.6",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.1.5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}