-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 754 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "proctf-cell",
"source": "index.html",
"scripts": {
"build": "esbuild src/main.ts --bundle --loader:.shader=text --loader:.png=binary --outfile=dist/main.js",
"watch": "esbuild src/main.ts --bundle --loader:.shader=text --loader:.png=binary --outfile=dist/main.js --watch",
"serve": "esbuild src/main.ts --bundle --loader:.shader=text --loader:.png=binary --servedir=. --outdir=www/js --serve=127.0.0.1:8000"
},
"devDependencies": {
"esbuild": "^0.13.8",
"prettier": "2.4.1"
},
"dependencies": {
"@types/three": "^0.133.1",
"dat.gui": "^0.7.7",
"nanostores": "^0.5.3",
"reconnecting-websocket": "^4.4.0",
"stats.js": "^0.17.0",
"three": "^0.133.1",
"three.meshline": "^1.3.0"
}
}