-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.5 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.5 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
{
"name": "flix",
"version": "0.1.0",
"description": "Flix monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"services/*"
],
"scripts": {
"dev": "concurrently -k -n api,admin -c blue,green \"npm run dev:api\" \"npm run dev:admin\"",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev:web": "npm --workspace @flix/web run dev -- --port 5174",
"dev:admin": "npm --workspace @flix/admin run dev -- --port 5173",
"dev:api": "npm --workspace @flix/api run dev",
"release:readiness": "node scripts/release-readiness-gate.mjs",
"e2e:smoke": "playwright test --config e2e/playwright.config.mjs",
"e2e:smoke:gate": "node scripts/e2e-smoke-gate.mjs",
"ci:local": "node scripts/ci-local-gate.mjs",
"dev:mock:web": "npm run db:reset:mock --workspace @flix/api && concurrently -k -n api,web -c blue,magenta \"npm run dev:api\" \"npm run dev:web\"",
"dev:mock": "npm run db:reset:mock --workspace @flix/api && concurrently -k -n api,admin -c blue,green \"npm run dev:api\" \"npm run dev:admin\"",
"dev:mock:all": "npm run db:reset:mock --workspace @flix/api && concurrently -k -n api,admin,web -c blue,green,magenta \"npm run dev:api\" \"npm run dev:admin\" \"npm run dev:web\""
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"concurrently": "^9.2.1"
}
}