-
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.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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": "a-trip-to-the-reef",
"repository": "COS426_FinalProject",
"version": "1.0.0",
"title": "A Trip to the Reef",
"description": "Explore the vibrant underwater world of a coral reef in this immersive 3D experience.",
"keywords": [
"Princeton",
"graphics",
"three.js",
"COS 426",
"reef",
"underwater",
"ocean"
],
"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": {
"@tweenjs/tween.js": "^25.0.0",
"dat.gui": "^0.7.9",
"random": "^5.4.1",
"three": "^0.181.2",
"three-obj-loader": "^1.1.3",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-loader": "^10.0.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.5",
"mkdirp": "^3.0.1",
"prettier": "^3.7.4",
"raw-loader": "^4.0.2",
"rimraf": "^6.1.2",
"webpack": "^5.103.0",
"webpack-dev-server": "^5.2.2"
},
"engines": {
"node": "^22.9.0"
}
}