-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
53 lines (53 loc) · 2.04 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
{
"name": "sdk_examples",
"version": "1.1.0",
"private": true,
"devDependencies": {
"lerna": "^5.1.3",
"cross-var-src-patch": "^1.1.1",
"decompress-cli": "^2.0.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack-cli": "^4.10.0",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^4.0.0",
"css-loader": "^6.7.1",
"style-loader": "^3.3.1",
"three": "^0.151.3",
"@types/three": "^0.151.0",
"react": "^18.0.0",
"@types/react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/react-dom": "^18.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"clean": "lerna clean --yes",
"clean-install": "yarn clean ; yarn install ; yarn install-bundle ; yarn bootstrap",
"build-all-dev": "lerna run build-dev",
"build-all-prod": "lerna run build-prod",
"inspector": "lerna run develop --scope=inspector --stream",
"vs-app": "lerna run develop --scope=vs-app --stream",
"easter": "lerna run develop --scope=easter --stream",
"rc-app": "lerna run develop --scope=rc-app --stream",
"embed-examples": "lerna run develop --scope=embed-examples --stream",
"training-tags-demo": "lerna run develop --scope=training-tags-demo --stream",
"fetch-bundle": "cross-var curl https://static.matterport.com/showcase-sdk/bundle/$npm_package_config_bundle_version/showcase-bundle.zip -o bundle.zip",
"expand-bundle": "yarn decompress bundle.zip --out-dir=./packages/bundle",
"install-bundle": "yarn fetch-bundle && yarn expand-bundle",
"test": "lerna run test --stream",
"fetch-types": "cross-var curl https://static.matterport.com/showcase-sdk/types/$npm_package_config_bundle_version/sdk.d.ts -o embedtypes/sdk.d.ts",
"postinstall": "yarn fetch-types"
},
"workspaces": [
"packages/*"
],
"config": {
"bundle_version": "24.4.3_webgl-60-g22e9112908",
"embed_version": "24.5.1_webgl-89-g74a0f01508"
}
}