-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
{
"name": "tickets-manager-web",
"private": true,
"type": "module",
"version": "1.0.0",
"scripts": {
"build": "vite build",
"check": "eslint --ext .js,.vue src && vue-tsc",
"clean": "rm -rf node_modules/ && yarn",
"dev": "vite",
"postinstall": "patch-package",
"preview": "vite preview",
"serve": "docker run --rm --name tickets-manager-web-nginx -v $(pwd)/dist:/usr/share/nginx/html:ro -p9999:80 nginx"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@jamescoyle/vue-icon": "^0.1.2",
"@johanaarstein/dotlottie-player-light": "^1.0.13",
"@mdi/js": "^7.4.47",
"@tanstack/vue-query": "^5.62.12",
"@unhead/vue": "^1.11.14",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "10.2.0",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"dayjs": "^1.11.13",
"echarts": "^5.5.0",
"floating-vue": "^5.2.2",
"lodash": "^4.17.21",
"pinia": "^2.3.0",
"typeface-inter": "^3.18.1",
"uuid": "^9.0.1",
"vue": "^3.5.13",
"vue-echarts": "6.7.3",
"vue-i18n": "^9.13.1",
"vue-number-animation": "^2.0.2",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.0",
"vue-tailwind-datepicker": "^1.7.3"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/lodash": "^4.17.14",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"patch-package": "^8.0.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^5.2.11",
"vite-plugin-static-copy": "^1.0.5",
"vue-tsc": "^2.2.0"
}
}