forked from wegue-oss/wegue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
{
"name": "wegue",
"version": "1.2.1",
"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,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "cross-env NODE_ENV=test karma start tests/unit/karma.conf.js --single-run",
"lint": "vue-cli-service lint --no-fix *.js app src tests",
"lint:fix": "vue-cli-service lint *.js app src tests",
"deploy": "gh-pages -d dist",
"init:app": "node util/init-app.js"
},
"dependencies": {
"axios": "^0.21.4",
"canvas-record": "^3.0.0",
"core-js": "^3.8.3",
"ol": "6.15.1",
"proj4": "2.8.1",
"vue": "2.6.14",
"vue-i18n": "^8.24.4",
"vuetify": "2.2.18"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@mdi/font": "^5.9.55",
"@vue/cli": "^5.0.8",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-unit-mocha": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/test-utils": "^1.1.3",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.2.0",
"copy-dir": "^1.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.20.0",
"gh-pages": "^1.1.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.34",
"karma-webpack": "^5.0.0",
"material-icons": "^0.5.4",
"portal-vue": "^2.1.7",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"vue-template-compiler": "2.6.14"
},
"engines": {
"node": ">= 14.15.0",
"npm": ">= 6.14.8"
}
}