-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.17 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
{
"dependencies": {
"@gltf-transform/core": "^3.4.4",
"@gltf-transform/extensions": "^3.4.4",
"@gltf-transform/functions": "^3.4.4",
"@shopify/screenshot-glb": "^1.9.1",
"aframe-atlas-uvs-component": "^3.0.0",
"aframe-gridhelper-component": "^0.2.0",
"aframe-look-at-component": "^1.0.0",
"aframe-proxy-event-component": "^2.1.0",
"aframe-state-component": "^7.1.1",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.3",
"budo": "^11.8.4",
"cli-progress": "^3.12.0",
"draco3dgltf": "^1.5.6",
"glob": "^10.3.1",
"gltf-pipeline": "^4.1.0",
"meshoptimizer": "^0.19.0",
"p-limit": "^4.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2"
},
"scripts": {
"dist": "webpack",
"dev": "budo src/index.js:dist/citybuilderjr.js --port 7001 --live",
"start": "npm run dev",
"gltf:audit": "node gltf-audit.mjs -i ./src/models",
"gltf:build": "node gltf-build.mjs -i ./src/models -o ./dist/models -u",
"gltf:screenshots": "node gltf-screenshots.mjs -i ./dist/models -o ./dist/img -u",
"gltf:pipeline": "npm run gltf:audit && npm run gltf:build && npm run gltf:screenshots"
}
}