-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 868 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 868 Bytes
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
{
"name": "three64",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "npx http-server -c-1 -p 5173 public",
"test": "echo \"No tests yet. Add Jest later.\" && exit 0",
"editor": "node src/editor/cli.mjs",
"build": "node src/build.js",
"build:obf": "cross-env NODE_ENV=production node src/build.js --obf",
"dev": "concurrently -n build,serve -c yellow,cyan \"cross-env NODE_ENV=development node src/build.js --watch\" \"live-server public --port=5173 --no-browser\""
},
"bin": {},
"devDependencies": {
"concurrently": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"javascript-obfuscator": "^4.1.0",
"live-server": "^1.2.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ammo.js": "^0.0.10",
"three": "^0.161.0"
}
}