-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "project-flowerbed",
"private": true,
"type": "module",
"devDependencies": {
"copy-webpack-plugin": "^9.0.0",
"css-loader": "5.2.7",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-webpack-plugin": "^2.5.3",
"html-webpack-plugin": "^5.3.1",
"prettier": "2.2.1",
"style-loader": "^2.0.0",
"webpack": "^5.76.3",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.15.0"
},
"scripts": {
"build": "webpack",
"ci-build": "NODE_ENV=development yarn install && NODE_ENV=production yarn run build",
"serve": "webpack serve",
"lint": "eslint ./src",
"format": "prettier --write ./src/**/*",
"gen:local-urls": "node scripts/gen-localhost-asset-list.js",
"compress:gltfs": "node asset_pipeline",
"compress:audio": "node scripts/compress-audio",
"compress:images": "node scripts/compress-images",
"compress:video": "node scripts/compress-video",
"compress:ui": "node scripts/compress-ui"
},
"dependencies": {
"@popperjs/core": "^2.11.0",
"@tweenjs/tween.js": "^18.6.4",
"bootstrap": "^5.1.3",
"ecsy": "^0.4.2",
"howler": "^2.2.3",
"html-loader": "^4.1.0",
"iwer": "^0.0.2",
"jquery": "^3.6.0",
"localforage": "^1.10.0",
"lodash.merge": "^4.6.2",
"three": "https://github.com/snagy/three.js-1.git#r144-merge#6fc27ea",
"three-instanced-uniforms-mesh": "^0.46.0",
"three-mesh-bvh": "^0.5.16",
"three-mesh-ui": "^6.5.2",
"troika-three-utils": "^0.46.0",
"uuid": "^8.3.2"
}
}