-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "dinky-dodger",
"repository": "cos426_final_project",
"version": "0.1.0",
"title": "Dinky Dodger",
"description": "SHORT DESCRIPTION OF PROJECT HERE. ONE TO TWO SENTENCES MAX",
"keywords": [
"Princeton",
"graphics",
"three.js",
"COS 426",
"ivy league",
"keyword1",
"keyword2",
"...",
"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": {
"dat.gui": "^0.7.7",
"three": "^0.116.0",
"three-obj-loader": "^1.1.3",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"css-loader": "^6.7.3",
"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",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">=8.0.0"
}
}