-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "cesium-photo-map",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Sharkwing",
"license": "ISC",
"dependencies": {
"cesium": "^1.81"
},
"devDependencies": {
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.2.0",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^3.2.0",
"markdown-it-loader": "^0.7.0",
"strip-pragma-loader": "^1.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"build": "node_modules/.bin/webpack --config webpack.config.js",
"start": "node_modules/.bin/webpack-dev-server --config webpack.config.js",
"release": "export $(cat .env | xargs) && node_modules/.bin/webpack --config webpack.release.config.js",
"serve-release": "export $(cat .env | xargs) && node_modules/.bin/webpack-dev-server --config webpack.release.config.js --content-base /dist"
}
}