-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.46 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
48
49
50
51
52
53
{
"name": "portal-0.5",
"repository": "portal-0.5",
"version": "0.1.0",
"title": "Portal 0.5",
"description": "A basic implementation of core Portal mechanics in threejs and cannonjs.",
"keywords": [
"Princeton",
"graphics",
"three.js",
"COS 426",
"cannonjs",
"portal"
],
"scripts": {
"start": "webpack-dev-server --mode development --output-public-path \"\"",
"prebuild": "rimraf ./build && mkdirp ./build",
"build": "npm run prebuild && webpack --mode production --progress --output-public-path \"\"",
"format": "prettier --write '*.js' 'src/**/*.js'",
"deploy": "npm run prebuild && webpack --mode production --progress && gh-pages -d build"
},
"dependencies": {
"cannon": "^0.6.2",
"css-loader": "^5.2.4",
"dat.gui": "^0.7.7",
"stats.js": "^0.17.0",
"style-loader": "^2.0.0",
"three": "^0.128.0",
"three-fatline": "^0.5.0",
"three-line2": "^1.1.9",
"three-obj-loader": "^1.1.3",
"three.meshline": "^1.3.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"file-loader": "^6.2.0",
"gh-pages": "^2.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.3.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.10.3"
},
"engines": {
"node": ">=8.0.0"
}
}