-
Notifications
You must be signed in to change notification settings - Fork 824
/
package.json
78 lines (78 loc) · 3.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@google/model-viewer-space-opera",
"type": "module",
"private": true,
"version": "0.0.1",
"description": "An interactive, client-side web UI for editing GLBs and model-viewer attributes.",
"scripts": {
"prepack": "rm $(find ./lib -name *_test.*)",
"build": "npm run build:tsc && npm run build:rollup",
"build:tsc": "tsc --incremental",
"build:rollup": "rollup -c --environment NODE_ENV:production",
"clean": "rm tsconfig.tsbuildinfo; rm -rf lib && rm -rf dist",
"test": "web-test-runner --playwright --browsers chromium",
"test:ci": "web-test-runner --static-logging --playwright --browsers chromium webkit",
"prepare": "if [ ! -L './shared-assets' ]; then ln -s ../shared-assets ./shared-assets; fi",
"watch:test": "web-test-runner --playwright --browsers chromium --watch",
"watch:tsc": "tsc -w",
"watch:rollup": "rollup -c -w",
"serve": "./node_modules/.bin/http-server -a 127.0.0.1 -o /editor/ -c-1",
"pyserve": "echo This assumes 'python' is Python 2. && which python && echo Visit $(hostname):8000/index.html && python -m SimpleHTTPServer 8000",
"dev": "npm run build -- --incremental && npm-run-all --parallel 'watch:tsc -- --preserveWatchOutput --incremental' 'watch:rollup' 'watch:test' 'serve -- -s'",
"dev-py": "npm run build -- --incremental && npm-run-all --parallel 'watch:tsc -- --preserveWatchOutput --incremental' 'watch:rollup' 'watch:test' 'pyserve'"
},
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"contributors": [
"Charles Han <[email protected]>",
"Daniel Bauman <[email protected]>",
"Emma Freeman <[email protected]>",
"Steven An <[email protected]>",
"James Ma <[email protected]>",
"Emmett Lalish <[email protected]>",
"Chris George <[email protected]>"
],
"devDependencies": {
"@google/model-viewer": "^4.0.0",
"@material/mwc-button": "^0.25.3",
"@material/mwc-checkbox": "^0.25.3",
"@material/mwc-dialog": "^0.25.3",
"@material/mwc-icon-button": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-tab": "^0.25.3",
"@material/mwc-tab-bar": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"@polymer/paper-dialog": "^3.0.1",
"@polymer/paper-dropdown-menu": "^3.2.0",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-slider": "^3.0.1",
"@reduxjs/toolkit": "^1.6.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/remote-redux-devtools": "^0.5.5",
"@gltf-transform/core": "^2.5.1",
"@gltf-transform/extensions": "^2.5.1",
"@gltf-transform/functions": "^2.5.1",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^5.1.2",
"gltf-validator": "^2.0.0-dev.3.5",
"http-server": "^14.1.1",
"js-beautify": "^1.14.0",
"jszip": "^3.10.1",
"lit": "^3.2.1",
"npm-run-all": "^4.1.5",
"pwa-helpers": "^0.9.1",
"qrious": "^4.0.2",
"redux": "^4.1.0",
"remote-redux-devtools": "^0.5.16",
"rollup": "^4.24.0",
"simple-dropzone": "^0.8.1",
"ts-closure-library": "^2019.11.1-1.21",
"typescript": "5.6.3",
"web-animations-js": "^2.3.2"
}
}