forked from 0xFloyd/Portfolio_2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 981 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
33
34
{
"name": "portfolio_2020",
"version": "1.0.0",
"description": "webpack starter",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --output-public-path=/build/ --mode development --progress --open --hot",
"build": "webpack --mode production --progress",
"start": "node server.js",
"heroku-postbuild": "webpack -p"
},
"author": "0xFloyd",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"compression-webpack-plugin": "^4.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.0",
"ammo.js": "github:kripken/ammo.js",
"dat.gui": "^0.7.7",
"express": "^4.17.1",
"raw-loader": "^4.0.2",
"stats.js": "^0.17.0",
"three": "^0.117.1"
}
}