forked from ManuCiao/bootstrap-viewer-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "ol-workshop",
"description": "OpenLayers workshop",
"version": "0.0.0",
"private": true,
"main": "main.js",
"dependencies": {
"colormap": "^2.3.0",
"ol": "^4.6.5",
"ol-hashed": "^1.0.2",
"ol-mapbox-style": "^2.11.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-config-openlayers": "^7.0.0",
"eslint-config-planet": "^14.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"eslintConfig": {
"extends": "openlayers",
"parserOptions": {
"ecmaVersion": "2017",
"sourceType": "module"
}
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server",
"lint": "eslint .",
"test": "npm run lint",
"build": "webpack --env=prod"
}
}