-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 956 Bytes
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
{
"name": "fogchan",
"version": "1.0.0",
"private": true,
"description": "Client-side encrypted ephemeral chat system",
"scripts": {
"build": "npm run build:shared && npm run build:worker && npm run build:web && npm run build:sdk && npm run build:cli",
"build:shared": "cd shared && npm run build",
"build:worker": "echo 'Worker is built by wrangler'",
"build:web": "cd web && npm run build",
"build:sdk": "cd sdk && npm run build",
"build:cli": "cd cli && npm run build",
"dev:worker": "cd worker && npm run dev",
"dev:web": "cd web && npm run dev",
"install:all": "npm install && cd shared && npm install && cd ../worker && npm install && cd ../web && npm install && cd ../sdk && npm install && cd ../cli && npm install",
"deploy:worker": "cd worker && npm run deploy",
"deploy:web": "cd web && npm run deploy"
},
"workspaces": [
"shared",
"worker",
"web",
"sdk",
"cli"
]
}