-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.67 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
{
"name": "livelink",
"version": "1.0.0",
"workspaces": [
"livelink.js",
"livelink.react",
"livelink.react.ui",
"livelink.samples",
"livelink.three"
],
"scripts": {
"=============== Build =================": "",
"prebuild": "npm run clean",
"build:js": "npm -C livelink.js run build",
"build:react": "npm -C livelink.react run build",
"build:react.ui": "npm -C livelink.react.ui run build",
"build:three": "npm -C livelink.three run build",
"build:samples": "npm -C livelink.samples run build",
"build": "npm run build:js && npm run build:react && npm run build:react.ui && npm run build:three",
"clean:js": "npm -C livelink.js run clean",
"clean:react": "npm -C livelink.react run clean",
"clean:react.ui": "npm -C livelink.react.ui run clean",
"clean:three": "npm -C livelink.three run clean",
"clean": "npm-run-all --parallel clean:*",
"=============== Dev =================": "",
"predev": "npm run build",
"dev:js": "npm -C livelink.js run dev",
"dev:react": "npm -C livelink.react run dev",
"dev:react.ui": "npm -C livelink.react.ui run dev",
"dev:samples": "npm -C livelink.samples run dev",
"dev:three": "npm -C livelink.three run dev",
"dev": "npm-run-all --parallel dev:*",
"dev-core": "npm link @3dverse/livelink.core && npm run dev",
"dev-docs": "npm -C livelink.js run docs",
"=============== Test =================": "",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
}
}