-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 3.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 3.13 KB
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": "hola-boss-oss",
"private": true,
"scripts": {
"clean": "rm -rf out desktop/build runtime/out",
"dev": "npm run desktop:dev",
"docs:dev": "npm --prefix website/docs run dev",
"docs:test": "npm --prefix website/docs run test",
"docs:typecheck": "npm --prefix website/docs run typecheck",
"docs:build": "npm --prefix website/docs run build",
"docs:preview": "npm --prefix website/docs run preview",
"docs:deploy:staging": "npm --prefix website/docs run deploy:staging",
"docs:deploy:production": "npm --prefix website/docs run deploy:production",
"desktop:clean": "rm -rf desktop/out desktop/build",
"desktop:install": "npm install --prefix desktop",
"desktop:prepare": "npm install --prefix sdk/app-sdk && npm --prefix sdk/app-sdk run build && npm install --prefix desktop",
"desktop:dev": "npm --prefix desktop run dev",
"desktop:e2e": "npm --prefix desktop run e2e",
"desktop:typecheck": "npm --prefix desktop run typecheck",
"desktop:prepare-runtime": "npm --prefix desktop run prepare:runtime",
"desktop:prepare-runtime:local": "npm --prefix desktop run prepare:runtime:local",
"desktop:dist:mac:local": "npm --prefix desktop run dist:mac:local",
"desktop:dist:win:local": "npm --prefix desktop run dist:win:local",
"runtime:harnesses:install": "npm install --prefix runtime/harnesses",
"runtime:harness-host:install": "npm run runtime:harnesses:install && npm install --prefix runtime/harness-host",
"runtime:harness-host:build": "npm --prefix runtime/harness-host run build",
"runtime:harness-host:test": "npm --prefix runtime/harness-host run test",
"runtime:harness-host:typecheck": "npm --prefix runtime/harness-host run typecheck",
"runtime:state-store:install": "npm install --prefix runtime/state-store",
"runtime:state-store:build": "npm --prefix runtime/state-store run build",
"runtime:state-store:test": "npm --prefix runtime/state-store run test",
"runtime:state-store:typecheck": "npm --prefix runtime/state-store run typecheck",
"runtime:api-server:install": "npm install --prefix runtime/api-server",
"runtime:api-server:build": "npm --prefix runtime/api-server run build",
"runtime:api-server:test": "npm --prefix runtime/api-server run test",
"runtime:api-server:typecheck": "npm --prefix runtime/api-server run typecheck",
"runtime:clean": "rm -rf out/runtime-linux out/runtime-macos out/runtime-windows out/runtime-root runtime/out",
"runtime:test": "npm run runtime:state-store:test && npm run runtime:harness-host:test && npm run runtime:api-server:test",
"sdk:bridge:install": "bun install --cwd sdk/bridge",
"sdk:bridge:build": "bun --cwd sdk/bridge run build",
"sdk:bridge:test": "bun --cwd sdk/bridge run test",
"sdk:bridge:typecheck": "bun --cwd sdk/bridge run typecheck",
"sdk:app-sdk:install": "npm install --prefix sdk/app-sdk",
"sdk:app-sdk:build": "npm --prefix sdk/app-sdk run build",
"sdk:app-sdk:test": "npm --prefix sdk/app-sdk run test",
"sdk:app-sdk:typecheck": "npm --prefix sdk/app-sdk run typecheck",
"sdk:app-sdk:codegen": "npm --prefix sdk/app-sdk run codegen"
}
}