-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.11 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vuestic-postgsail",
"private": false,
"version": "0.1.0-beta14",
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "npm run lint && npm run tsc && VITE_CJS_TRACE=true 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"
]
},
"author": "Francois Lacroix",
"license": "MIT",
"bugs": {
"url": "https://github.com/xbgmsharp/vuestic-postgsail/issues"
},
"homepage": "https://xbgmsharp.github.io/postgsail/",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/xbgmsharp"
},
"dependencies": {
"@deck.gl/core": "^9.0.38",
"@deck.gl/extensions": "^9.0.38",
"@deck.gl/geo-layers": "^9.0.38",
"@deck.gl/layers": "^9.0.38",
"@deck.gl/mapbox": "^9.0.38",
"@fortawesome/fontawesome-free": "^6.6.0",
"@gtm-support/vue-gtm": "^2.1.0",
"@turf/turf": "^7.2.0",
"@vueuse/core": "^11.3.0",
"chart.js": "^4.4.7",
"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",
"deck.gl-leaflet": "^1.3.1",
"echarts": "^5.6.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-timedimension": "^1.1.1",
"leaflet.fullscreen": "^3.0.2",
"leaflet.sidepanel": "^1.2.1",
"leaflet.smooth_marker_bouncing": "^3.1.0",
"lunarphase-js": "^2.0.3",
"maplibre-gl": "^4.7.1",
"moment": "^2.30.1",
"pinia": "^2.3.0",
"register-service-worker": "^1.7.1",
"sass": "^1.78.0",
"sirv": "^3.0.0",
"steelseries": "^2.0.7",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-echarts": "^7.0.3",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0",
"vuestic-ui": "^1.10.3"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@testing-library/vue": "^8.1.0",
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.17.0",
"cypress-image-diff-js": "^1.27.3",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.0",
"husky": "^9.1.7",
"lint-staged": "^13.0.1",
"postcss": "^8.4.49",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.17",
"typescript": "^4.9.5",
"vite": "^6.0.7",
"vite-plugin-pwa": "^0.21.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^1.8.27"
}
}