forked from wegue-oss/wegue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.42 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
{
"name": "wegue",
"version": "1.0.0",
"description": "Template project for a WebGIS client with OpenLayers and Vue.js",
"author": "Christian Mayer <[email protected]>",
"contributors": [
{
"name": "See github contributors",
"url": "https://github.com/meggsimum/wegue/graphs/contributors"
}
],
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "node build/dev-server.js",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"lint-fix": "eslint --fix --ext .js,.vue src app test/unit/specs",
"deploy": "gh-pages -d dist",
"init:app": "node util/init-app.js"
},
"dependencies": {
"axios": "^0.21.4",
"canvas-record": "^3.0.0",
"ol": "6.4.3",
"proj4": "2.5.0",
"vue": "2.6.11",
"vue-i18n": "^8.24.4",
"vuetify": "2.2.18"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs3": "^7.13.10",
"@mdi/font": "^5.9.55",
"@vue/test-utils": "^1.0.3",
"autoprefixer": "^9.8.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"connect-history-api-fallback": "^1.6.0",
"copy-dir": "^1.2.0",
"copy-webpack-plugin": "^4.3.1",
"core-js": "^3.9.1",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"cssnano": "^3.10.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.19.2",
"inject-loader": "^4.0.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"material-icons": "^0.5.4",
"mocha": "^6.2.3",
"opn": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"ora": "^3.4.0",
"phantomjs-prebuilt": "^2.1.16",
"portal-vue": "^2.1.7",
"rimraf": "^2.7.1",
"semver": "^6.3.0",
"shelljs": "^0.8.4",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"url-loader": "^0.6.2",
"vue-loader": "^14.2.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.6.11",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}