-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "cesium-webpack-example",
"version": "1.0.0",
"description": "The minimal recomended setup for an app using Cesium with Webpack.",
"main": "index.js",
"keywords": [
"cesium",
"webpack",
"example"
],
"author": {
"name": "Analytical Graphics, Inc.",
"url": "https://www.agi.com"
},
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"devDependencies": {
"cesium": "^1.60.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"strip-pragma-loader": "^1.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": "webpack --config webpack.config.js",
"start": "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"
},
"dependencies": {
"ol": "^5.3.3",
"ol-mapbox-style": "^4.3.1",
"rbush": "^2.0.2"
}
}