-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
52 lines (52 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
48
49
50
51
52
{
"name": "",
"version": "0.0.0",
"description": "",
"license": "MIT",
"repository": "",
"author": {
"name": "",
"email": "",
"url": ""
},
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=development node ./esbuild.js",
"prebuild": "yarn clean; yarn copy-public",
"build": "cross-env NODE_ENV=production node ./esbuild.js",
"clean": "rimraf build/; rimraf public/app.js; rimraf public/app.js.map",
"copy-public": "cpr public/ build/"
},
"dependencies": {
"cannon-es": "^0.20.0",
"cannon-es-debugger": "^1.0.0",
"detect-gpu": "^5.0.37",
"image-promise": "^7.0.1",
"lil-gui": "^0.19.1",
"lodash-es": "^4.17.21",
"mp4-wasm": "marcofugaro/mp4-wasm#build-embedded",
"p-map": "^6.0.0",
"postprocessing": "^6.33.3",
"pretty-ms": "^8.0.0",
"stats.js": "marcofugaro/stats.js",
"three": "0.158.0"
},
"devDependencies": {
"address": "^2.0.1",
"browser-sync": "^2.29.3",
"chalk": "4.1.2",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"esbuild": "0.16.17",
"esbuild-plugin-glslify": "^1.0.1",
"esbuild-plugin-glslify-inline": "^1.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"glslify": "^7.1.1",
"indent-string": "^5.0.0",
"ora": "^7.0.1",
"react-dev-utils": "^12.0.1",
"rimraf": "^5.0.5",
"tree-node-cli": "^1.6.0"
}
}