-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"name": "the-drive",
"repository": "cos-426-final-project",
"version": "0.8.0",
"title": "The Drive",
"description": "A spooky first-person drive up a mountain as fog chases you.",
"keywords": [
"Princeton",
"graphics",
"three.js",
"COS 426",
"driving simulator",
"spooky",
"cannon-es.js"
],
"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-es": "^0.20.0",
"cannon-es-debugger": "^1.0.0",
"dat.gui": "^0.7.7",
"regenerator-runtime": "^0.13.11",
"three": "^0.147.0",
"webpack-cli": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.5.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">=8.0.0"
}
}