-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.1 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
{
"name": "@frameos/workspace",
"private": true,
"packageManager": "pnpm@10.27.0",
"scripts": {
"dev": "mprocs",
"dev:backend": "DEBUG=1 ./backend/bin/dev-api",
"dev:migrate": "DEBUG=1 ./backend/bin/dev-migrate",
"dev:worker": "DEBUG=1 ./backend/bin/dev-worker",
"dev:frontend": "pnpm --dir frontend run dev",
"dev:frame-frontend": "pnpm --dir frameos/frontend run dev",
"dev:redis": "sh -c 'mkdir -p .local/redis && exec redis-server --dir .local/redis'",
"test:frontend-e2e": "playwright test -c e2e/frontend-visual/playwright.config.ts --grep @e2e",
"test:frontend-visual": "playwright test -c e2e/frontend-visual/playwright.config.ts",
"test:frontend-visual:update": "playwright test -c e2e/frontend-visual/playwright.config.ts --update-snapshots",
"test:frontend-visual:ui": "playwright test -c e2e/frontend-visual/playwright.config.ts --ui"
},
"pnpm": {
"overrides": {
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"csstype": "3.2.3"
}
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"mprocs": "^0.8.3"
}
}