-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "ceeder",
"repository": "https://github.com/dsmaugy/cpsc478-final",
"version": "1.0.0",
"title": "CEEDER",
"description": "lose yourself in a peaceful solar system far away from the scourge of human industrialization",
"keywords": [
"graphics",
"three.js",
"CPSC 478",
"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",
"three-rounded-box": "^0.1.1",
"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.0.0",
"gh-pages": "^2.2.0",
"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"
}
}