-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 879 Bytes
/
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
{
"name": "iss-tracker",
"version": "1.0.0",
"description": "Tracks the ISS on a 3D globe",
"scripts": {
"build": "gulp && webpack --config ./scripts/webpack.prod.js",
"dev": "gulp && webpack serve --config ./scripts/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jacob Kapitein",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.17.12",
"@types/dat.gui": "^0.7.7",
"@types/node": "^13.13.15",
"@types/three": "^0.134.0",
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
"gulp-uglify": "^3.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^0.24.0",
"dat.gui": "^0.7.9",
"three": "^0.134.0"
}
}