-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.78 KB
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
{
"name": "ftw-inference-app",
"version": "0.0.0",
"private": false,
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test": "vitest run",
"pretest": "npm run lint && npm run type-check",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint && prettier --check \"src/**/*.{ts,js,html,vue}\"",
"lint:fix": "eslint --fix && prettier --write \"src/**/*.{ts,js,html,vue}\""
},
"dependencies": {
"@turf/boolean-within": "^7.2.0",
"geojson": "^0.5.0",
"geotiff": "^3.0.5",
"jwt-decode": "^4.0.0",
"jwt-encode": "^1.0.1",
"maplibre-gl": "^5.23.0",
"ol": "^10.8.0",
"ol-mapbox-style": "^13.4.0",
"ol-pmtiles": "^2.0.2",
"pmtiles": "^4.4.1",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vuetify": "^3.9.5",
"vuetify-notifier": "^2.0.19"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/geojson": "^7946.0.16",
"@types/node": "^18.19.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/eslint-plugin": "^1.4.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^24.0.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.6.2",
"resize-observer-polyfill": "^1.5.1",
"sass-embedded": "^1.90.0",
"typescript": "~5.3.0",
"vite": "^6.3.5",
"vite-plugin-vue-devtools": "^7.0.6",
"vite-plugin-vuetify": "^2.1.2",
"vitest": "^3.2.3",
"vitest-matchmedia-mock": "^2.0.3",
"vue-tsc": "^2.2.10"
}
}