-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "ol-cesium-webpack-example",
"version": "1.1.0",
"description": "A POC of OL-Cesium Webpack project based on the official Cesium with Webpack example.",
"main": "index.js",
"keywords": [
"ol-cesium",
"openlayers",
"cesium",
"webpack",
"example"
],
"author": {
"name": "Analytical Graphics, Inc.",
"url": "https://www.agi.com"
},
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"devDependencies": {
"cesium": "^1.47.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"strip-pragma-loader": "^1.0.0",
"ol": "^5.0.3",
"ol-cesium": "^2.0.0",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"url-loader": "^0.6.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.9.1"
},
"scripts": {
"build": "node_modules/.bin/webpack --config webpack.config.js",
"start": "node_modules/.bin/webpack-dev-server --config webpack.config.js",
"release": "node_modules/.bin/webpack --config webpack.release.config.js",
"serve-release": "node_modules/.bin/webpack-dev-server --config webpack.release.config.js --content-base /dist"
}
}