-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "vue-demo",
"version": "3.5.0",
"private": true,
"author": "CodedThemes",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build-stage": "vue-tsc --noEmit && vite build --base=/stage/",
"build-prod": "vue-tsc --noEmit && vite build --base=/",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern .gitignore",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@mdi/js": "^7.4.47",
"@tsconfig/node22": "^22.0.0",
"@typescript-eslint/parser": "^8.19.0",
"apexcharts": "5.16.0",
"axios": "1.18.1",
"chance": "1.1.12",
"date-fns": "4.1.0",
"lodash": "^4.17.21",
"pinia": "3.0.4",
"remixicon": "4.6.0",
"vee-validate": "4.15.0",
"vite-plugin-vuetify": "2.1.3",
"vue": "3.5.39",
"vue-router": "5.1.0",
"vue-tabler-icons": "2.21.0",
"vue3-apexcharts": "1.11.1",
"vue3-perfect-scrollbar": "2.0.0",
"vue3-print-nb": "0.1.4",
"vuetify": "4.1.4",
"yup": "1.6.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/chance": "1.1.6",
"@types/node": "22.10.4",
"@vitejs/plugin-vue": "6.0.7",
"@vue/eslint-config-prettier": "10.1.0",
"@vue/test-utils": "2.4.11",
"@vue/tsconfig": "0.7.0",
"eslint": "9.17.0",
"eslint-plugin-vue": "9.32.0",
"jsdom": "29.1.1",
"prettier": "3.4.2",
"sass": "1.79.6",
"sass-loader": "16.0.4",
"typescript": "6.0.3",
"typescript-eslint": "^8.19.0",
"vite": "8.1.4",
"vite-plugin-static-copy": "^2.3.0",
"vitest": "4.1.10",
"vue-tsc": "3.3.7"
}
}