-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wegue",
"version": "3.0.0-dev",
"description": "Template project for a WebGIS client with OpenLayers and Vue.js",
"author": "Christian Mayer <chris@meggsimum.de>",
"contributors": [
{
"name": "See github contributors",
"url": "https://github.com/wegue-oss/wegue/graphs/contributors"
}
],
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run lint && vite build",
"preview": "vite preview",
"test": "cross-env NODE_ENV=test karma start tests/unit/karma.conf.cjs --single-run",
"lint": "eslint *.js app src tests",
"lint:fix": "eslint *.js app src tests --fix",
"deploy": "gh-pages -d dist",
"init:app": "node util/init-app.js"
},
"dependencies": {
"@material-design-icons/font": "0.14.15",
"@mdi/font": "7.4.47",
"@vue/compat": "^3.5.22",
"axios": "^1.12.2",
"canvas-record": "^3.1.0",
"ol": "10.2.1",
"proj4": "2.9.0",
"tiny-emitter": "^2.1.0",
"vue": "^3.5.22",
"vue-i18n": "^10.0.5",
"vuetify": "^3.10.4"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@nabla/vite-plugin-eslint": "^2.0.6",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-standard": "^9.0.1",
"@vue/test-utils": "github:vuejs/test-utils#e3c88273ace7a0e1c5a5eaf8f7cd60c80f73e39c",
"axios-mock-adapter": "^2.1.0",
"chai": "^4.5.0",
"copy-dir": "^1.3.0",
"cross-env": "^7.0.3",
"eslint": "^9.36.0",
"eslint-plugin-vue": "~10.5.0",
"eslint-plugin-vuetify": "^2.5.3",
"gh-pages": "^6.3.0",
"globals": "^16.4.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "^0.0.36",
"karma-vite": "^1.0.5",
"mocha": "^11.7.4",
"sass-embedded": "^1.93.2",
"sinon": "^21.0.0",
"sinon-chai": "^3.7.0",
"vite": "^7.3.0",
"vite-plugin-vue-devtools": "^8.0.2",
"vite-plugin-vuetify": "^2.1.2"
},
"overrides": {
"karma-vite": {
"vite": "^7.1.9"
}
},
"engines": {
"node": ">= 20.19.0",
"npm": ">= 10.8.2"
}
}