-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
49
50
51
{
"name": "lower-case-dashed-name-of-project",
"repository": "COS426_Final_Project",
"version": "0.1.0",
"title": "Triathlon Mania",
"description": "Want to try your hand at conquering a triathlon? Play Triathlon Mania!",
"keywords": [
"Princeton",
"graphics",
"three.js",
"COS 426",
"keywor0d",
"keyword1",
"keyword2-etc",
"but this last entry CANNOT have a comma after it ->"
],
"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": {
"alea": "^1.0.1",
"dat.gui": "^0.7.7",
"simplex-noise": "^4.0.3",
"three": "^0.133.1",
"three-obj-loader": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.2",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"mkdirp": "^1.0.4",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.58.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^4.3.1"
},
"engines": {
"node": ">=8.0.0"
}
}