forked from wegue-oss/wegue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3 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
{
"name": "wegue",
"version": "1.0.0-dev",
"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",
"deploy": "gh-pages -d dist",
"init:app": "node util/init-app.js"
},
"dependencies": {
"ol": "6.2.1",
"proj4": "2.5.0",
"vue": "2.6.11",
"vuetify": "1.5.23"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.6.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"connect-history-api-fallback": "^1.6.0",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"css-loader": "^1.0.1",
"cssnano": "^3.10.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.1.3",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.19.1",
"inject-loader": "^4.0.1",
"karma": "^4.1.0",
"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",
"mocha": "^6.1.0",
"opn": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"ora": "^3.4.0",
"phantomjs-prebuilt": "^2.1.16",
"rimraf": "^2.6.3",
"semver": "^6.1.1",
"shelljs": "^0.8.3",
"sinon": "^7.3.0",
"sinon-chai": "^3.3.0",
"url-loader": "^1.1.2",
"vue-loader": "^14.2.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.6.11",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}