-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.45 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
50
51
52
53
54
55
{
"name": "a-meet",
"version": "0.1.0",
"private": true,
"description": "A-Meet — a Google Meet clone (MERN + Socket.io + mediasoup SFU)",
"engines": {
"node": ">=22.13.0"
},
"workspaces": [
"client",
"server",
"shared",
"bot",
"e2e"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm --prefix server run dev",
"dev:client": "npm --prefix client run dev",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"test": "npm run test:server && npm run test:client && npm run test:bot",
"test:server": "npm --prefix server test",
"test:client": "npm --prefix client test",
"test:bot": "npm --prefix bot test",
"coverage": "npm run coverage:server && npm run coverage:client && npm run coverage:bot",
"coverage:server": "npm --prefix server run test:coverage",
"coverage:client": "npm --prefix client run test:coverage",
"coverage:bot": "npm --prefix bot run test:coverage",
"test:e2e": "npm --prefix e2e test",
"test:e2e:install": "npm --prefix e2e run install:browsers",
"typecheck": "npm run typecheck:shared && npm run typecheck:server && npm run typecheck:client && npm run typecheck:bot",
"typecheck:shared": "npm --prefix shared run typecheck",
"typecheck:server": "npm --prefix server run typecheck",
"typecheck:client": "npm --prefix client run typecheck",
"typecheck:bot": "npm --prefix bot run typecheck",
"lint:shared": "npm --prefix shared run lint",
"lint:server": "npm --prefix server run lint",
"lint:client": "npm --prefix client run lint",
"lint:bot": "npm --prefix bot run lint",
"lint": "npm run lint:shared && npm run lint:server && npm run lint:client && npm run lint:bot",
"lint:fix": "npm --workspaces --if-present run lint -- --fix",
"audit:server": "npm audit --audit-level=high --prefix server",
"audit:client": "npm audit --audit-level=high --prefix client",
"audit:bot": "npm audit --audit-level=high --prefix bot",
"audit": "npm run audit:server && npm run audit:client && npm run audit:bot",
"build:client": "npm --prefix client run build",
"verify": "npm run lint && npm run audit && npm run typecheck && npm run coverage && npm run build:client && npm run test:e2e"
},
"devDependencies": {
"concurrently": "^10.0.0",
"typescript": "^5.9.2"
}
}