-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.71 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "Quetzal-network-editor",
"description": "Quetzal web companion",
"author": "SYSTRA Canada (Simon Boivin)",
"version": "6.1.4",
"type": "module",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"build-staging": "vite build --mode staging",
"preview": "vite preview",
"preview-staging": "vite preview --mode staging",
"deploy-staging": "sh build/deploy_dev.sh",
"clean": "rm -rf dist src/config.js src/translations.json",
"setup": "sh build/setup.sh",
"lint": "ko=0; yarn run -s jslint || ko=1; yarn run -s csslint || ko=1; [ ! $ko -eq 1 ]",
"jslint": "eslint src",
"csslint": "stylelint 'src/**/*.{scss,css,vue}'",
"i18n-extract": "vue-gettext-extract",
"i18n-compile": "vue-gettext-compile",
"test": "vitest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.670.0",
"@aws-sdk/credential-providers": "^3.670.0",
"@aws-sdk/lib-storage": "^3.670.0",
"@aws-sdk/s3-request-presigner": "^3.670.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@turf/along": "^6.5.0",
"@turf/bbox-clip": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/boolean-contains": "^6.5.0",
"@turf/boolean-intersects": "^6.5.0",
"@turf/buffer": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/length": "^6.5.0",
"@turf/nearest-point-on-line": "^6.5.0",
"@vueuse/core": "^10.11.1",
"aws-amplify": "^6.5.3",
"axios": "^1.7.9",
"chart.js": "^4.4.7",
"chartjs-adapter-luxon": "^1.3.1",
"chartjs-plugin-zoom": "^2.2.0",
"chroma-js": "^2.6.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"map-promisified": "latest",
"mapbox-gl": "^3.9.2",
"markdown-it": "^14.1.0",
"ngraph.graph": "^20.0.1",
"ngraph.path": "^1.5.0",
"pinia": "^2.3.0",
"seedrandom": "^3.0.5",
"sha256-uint8array": "^0.10.7",
"short-uuid": "^4.2.2",
"turf-linestring": "^1.0.2",
"turf-point": "^2.0.1",
"turf-polygon": "^1.0.3",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-i18n": "^9.14.2",
"vue-mapbox3": "^0.8.1",
"vue-router": "^4.5.0",
"vue3-gettext": "=3.0.0-beta.4",
"vue3-json-viewer": "^2.2.2",
"vuetify": "^3.7.6"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@stylistic/eslint-plugin": "^1.8.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^0.34.5",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"babel-plugin-root-import": "^6.6.0",
"easygettext": "^2.17.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuetify": "^2.5.1",
"jsdom": "^22.1.0",
"postcss-html": "^1.7.0",
"sass": "^1.83.1",
"sinon": "^16.0.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"vite": "^5.4.11",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-stylelint": "^4.3.0",
"vite-plugin-vue-devtools": "^7.4.6",
"vite-plugin-vuetify": "^1.0.2",
"vitest": "^1.6.0"
},
"resolutions": {
"string-width": "4.2.3"
},
"engines": {
"node": ">= 20.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}