-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 2.95 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
{
"name": "openvidu-meet-workspace",
"version": "3.8.0",
"private": true,
"description": "OpenVidu Meet Monorepo",
"scripts": {
"build": "pnpm run build:typings && pnpm run build:backend && pnpm run build:shared-components && pnpm run build:frontend && pnpm run build:webcomponent",
"clean": "rm -f pnpm-lock.yaml && pnpm --filter @openvidu-meet/backend run clean && pnpm --filter @openvidu-meet/frontend run clean",
"build:frontend": "pnpm --filter @openvidu-meet/frontend run build ${BASE_HREF:-/}",
"build:backend": "pnpm --filter @openvidu-meet/backend run build",
"build:webcomponent": "pnpm --filter @openvidu-meet/webcomponent run build:wc:bundle",
"build:typings": "pnpm --filter @openvidu-meet/typings run build",
"build:testapp": "pnpm --filter @openvidu-meet/testapp run build",
"build:webcomponent-doc": "node scripts/generate-webcomponent-docs.js docs",
"build:rest-api-docs": "pnpm --filter @openvidu-meet/backend run doc:api && pnpm --filter @openvidu-meet/backend run doc:internal-api",
"build:shared-components": "pnpm --filter @openvidu-meet/frontend run lib:build",
"dev:frontend": "pnpm --filter @openvidu-meet/frontend run dev",
"dev:pro-frontend": "pnpm --filter openvidu-meet-pro-frontend run dev",
"dev:backend": "pnpm --filter @openvidu-meet/backend run start:dev",
"dev:pro-backend": "pnpm --filter @openvidu-meet-pro/backend run start:dev",
"dev:webcomponent": "pnpm --filter @openvidu-meet/webcomponent run dev",
"dev:testapp": "pnpm --filter @openvidu-meet/testapp run serve",
"dev:typings": "pnpm --filter @openvidu-meet/typings run dev",
"dev:rest-api-docs": "nodemon --config meet-ce/backend/nodemon.docs.json",
"dev:pro-rest-api-docs": "nodemon --config meet-pro/backend/nodemon.docs.json",
"start:testapp": "pnpm --filter @openvidu-meet/testapp run start",
"test:integration-backend": "pnpm --filter @openvidu-meet/backend run test:integration",
"test:integration-backend-room-management": "pnpm --filter @openvidu-meet/backend run test:integration-room-management",
"test:integration-backend-webhooks": "pnpm --filter @openvidu-meet/backend run test:integration-webhooks",
"test:integration-backend-auth-security": "pnpm --filter @openvidu-meet/backend run test:integration-auth-security",
"test:integration-backend-config-analytics": "pnpm --filter @openvidu-meet/backend run test:integration-config-analytics",
"test:integration-backend-recordings": "pnpm --filter @openvidu-meet/backend run test:integration-recordings",
"test:unit-backend": "pnpm --filter @openvidu-meet/backend run test:unit",
"test:unit-frontend": "pnpm --filter @openvidu-meet/frontend run test:unit:lib",
"test:e2e-frontend-components": "pnpm --filter @openvidu-meet/frontend run e2e:playwright:all",
"test:unit-webcomponent": "pnpm --filter @openvidu-meet/webcomponent run test:unit"
},
"devDependencies": {
"concurrently": "9.2.1",
"identity-obj-proxy": "3.0.0",
"nodemon": "3.1.14",
"tree-kill": "1.2.2",
"wait-on": "9.0.10"
}
}