-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "skywayCesium",
"version": "1.0.5",
"description": "skyway cesium",
"main": "index.js",
"keywords": [
"cesium",
"webpack"
],
"author": {
"name": "skyway",
"url": "https://www.agi.com"
},
"homepage": "https://cesiumjs.org",
"license": "Apache-2.0",
"devDependencies": {
"browser-sync": "^2.26.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"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": {
"browser": "browser-sync start --server --directory --port 50032 --files \"**/*.css, **/*.html , **/*.js, !dist/** \"",
"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"
},
"dependencies": {
"cesium": "^1.47.0",
"html-loader": "^0.5.5",
"jquery": "^3.3.1"
}
}