forked from CesiumGS/cesium-webpack-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"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": "Cesium GS, Inc.",
"url": "https://cesium.com"
},
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"dependencies": {
"cesium": "^1.79.1",
"dayjs": "^1.10.4",
"satellite.js": "^4.1.3"
},
"devDependencies": {
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.2.0",
"csv-loader": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"strip-pragma-loader": "^1.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"xml-loader": "^1.2.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"
}
}