-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 854 Bytes
/
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
{
"name": "ol-workshop",
"description": "OpenLayers workshop",
"version": "0.0.0",
"private": true,
"main": "main.js",
"dependencies": {
"colormap": "2.3.1",
"ol": "6.0.0",
"ol-hashed": "2.0.0",
"ol-mapbox-style": "4.3.1"
},
"devDependencies": {
"copy-webpack-plugin": "5.0.2",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-config-openlayers": "11.0.0",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "3.2.0",
"kompas": "0.0.1",
"style-loader": "0.23.1",
"webpack": "4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "3.2.1"
},
"eslintConfig": {
"extends": "openlayers"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint",
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production"
}
}