This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
forked from xbgmsharp/vuestic-postgsail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.57 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
{
"name": "vuestic-postgsail",
"private": false,
"version": "0.1.0-beta6",
"scripts": {
"prepare": "chmod +x ./node_modules/husky/lib/bin.js && husky install",
"dev": "vite",
"build": "npm run lint && npm run tsc && vite build",
"build:ci": "vite build",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.js",
"prelint": "npm run format",
"lint": "eslint --fix './src/**/*.{ts,js,vue}'",
"format": "prettier --write .",
"tsc": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "cypress run",
"cy:run": "cypress run"
},
"lint-staged": {
"./src/**/*.{ts,js,vue}": [
"npm run lint"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@gtm-support/vue-gtm": "^2.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@vueuse/core": "^9.6.0",
"chart.js": "^4.4.2",
"chartjs-chart-matrix": "^2.0.1",
"d3": "^7.9.0",
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"date-fns": "^2.29.2",
"echarts": "^5.5.0",
"eslint-config-prettier": "^9.1.0",
"flag-icons": "^6.10.0",
"keycloak-js": "^23.0.4",
"leaflet": "^1.9.4",
"leaflet-rotatedmarker": "^0.2.0",
"leaflet-sidebar-v2": "^3.2.3",
"leaflet-timedimension": "^1.1.1",
"leaflet.fullscreen": "^3.0.1",
"lunarphase-js": "^2.0.1",
"moment": "^2.29.4",
"pinia": "^2.1.4",
"register-service-worker": "^1.7.1",
"sass": "^1.72.0",
"sirv": "^2.0.4",
"steelseries": "^2.0.7",
"vue": "^3.4.25",
"vue-chartjs": "^5.3.1",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"vuestic-ui": "^1.8.8"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@testing-library/vue": "^6.6.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.17",
"cypress": "^13.8.1",
"cypress-image-diff-js": "^1.27.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.1",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.3",
"typescript": "^4.5.4",
"vite": "^4.5.3",
"vite-plugin-pwa": "^0.16.7",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
}
}