-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 812 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "collab-editor",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"scripts": {
"install:all": "npm install",
"dev:auth": "npm run dev --workspace=services/auth-service",
"dev:room": "npm run dev --workspace=services/room-service",
"dev:collab": "npm run dev --workspace=services/collab-service",
"dev:chat": "npm run dev --workspace=services/chat-service",
"dev:snapshot": "npm run dev --workspace=services/snapshot-service",
"dev:execution": "npm run dev --workspace=services/execution-service",
"migrate:auth": "npm run db:migrate --workspace=services/auth-service",
"migrate:room": "npm run db:migrate --workspace=services/room-service",
"migrate:all": "npm run migrate:auth && npm run migrate:room"
}
}