forked from przemas11/Sat-Track
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
43
44
45
46
47
{
"name": "sat-track",
"version": "1.0.0",
"description": "Satellite tracker web app",
"main": "index.js",
"keywords": [
"cesium",
"webpack",
"satellite",
"tracker"
],
"author": {
"name": "Przemas11",
"url": "https://github.com/przemas11"
},
"homepage": "https://github.com/przemas11",
"license": "Apache-2.0",
"dependencies": {
"bootstrap": "^4.5.3",
"cesium": "^1.63.1",
"dotenv": "^8.2.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"satellite.js": "^4.1.2"
},
"devDependencies": {
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.2.0",
"dotenv-webpack": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.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": "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",
"gh-pages": "git subtree push --prefix dist origin gh-pages"
}
}