-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.35 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": "bed-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"serve": "npm start",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"@openearth/windgl": "^0.1.2",
"@turf/distance": "^6.3.0",
"@turf/turf": "^6.3.0",
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"@vue/babel-preset-jsx": "^1.4.0",
"core-js": "^3.6.5",
"echarts": "^5.4.3",
"file-saver": "^2.0.5",
"mapbox-gl": "^2.15.0",
"marked": "^2.0.3",
"moment": "^2.29.1",
"oidc-client": "^1.11.5",
"register-service-worker": "^1.7.1",
"tiny-cookie": "^2.3.2",
"vue": "^2.7.2",
"vue-echarts": "^6.6.1",
"vue-gtag": "^1.16.1",
"vue-router": "^3.2.0",
"vue-tour": "^2.0.0",
"vue2mapbox-gl": "^0.15.0",
"vuelidate": "^0.7.6",
"vuetify": "^2.7.1",
"vuex": "^3.4.0",
"zarr": "^0.5.1",
"zarr-js": "^2.2.1"
},
"overrides": {
"@openearth/windgl": {
"mapbox-gl": "$mapbox-gl"
}
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@mdi/font": "^5.9.55",
"@rushstack/eslint-patch": "^1.4.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-pwa": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/runtime-dom": "^3.3.4",
"@vue/test-utils": "^1.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^9.26.0",
"lint-staged": "^9.5.0",
"markdown-loader": "^6.0.0",
"sass": "^1.32.0",
"sass-loader": "^10.0.0",
"vue-cli-plugin-vuetify": "~2.3.1",
"vue-html-loader": "^1.2.4",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "~2.7.14",
"vuetify-loader": "^1.7.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}