-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.43 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
{
"name": "bmad-starter-kit",
"version": "0.0.0",
"private": true,
"description": "A BMAD learning project with user authentication and admin dashboard",
"scripts": {
"dev": "concurrently \"pnpm --filter @bmad-starter-kit/api start:dev\" \"pnpm --filter @bmad-starter-kit/web dev\"",
"dev:api": "pnpm --filter @bmad-starter-kit/api start:dev",
"dev:web": "pnpm --filter @bmad-starter-kit/web dev",
"build": "turbo run build",
"build:api": "pnpm --filter @bmad-starter-kit/api build",
"build:web": "pnpm --filter @bmad-starter-kit/web build",
"build:shared": "pnpm --filter @bmad-starter-kit/shared build",
"lint": "turbo run lint",
"test": "pnpm run test:unit && pnpm run test:integration",
"test:unit": "pnpm run test:api && pnpm run test:web",
"test:api": "pnpm --filter @bmad-starter-kit/api test:cov",
"test:web": "pnpm --filter @bmad-starter-kit/web test:run",
"test:integration": "playwright test",
"test:integration:api": "playwright test --project=api",
"test:integration:ui": "playwright test --project=chromium-ui",
"test:integration:ui:ui": "playwright test --project=chromium-ui --ui",
"test:integration:headed": "playwright test --project=chromium-ui --headed",
"test:integration:debug": "playwright test --project=chromium-ui --debug",
"test:integration:report": "playwright show-report",
"test:integration:p0": "playwright test --grep \"\\[P0\\]\"",
"test:integration:p1": "playwright test --grep \"\\[P0\\]|\\[P1\\]\"",
"test:integration:showcase": "playwright test --project=api tests/api/showcase.spec.ts tests/e2e/project-submission.spec.ts",
"prisma:studio": "cd apps/api && pnpm prisma studio",
"test:e2e": "pnpm run test:integration",
"test:e2e:api": "pnpm run test:integration:api",
"test:e2e:ui": "pnpm run test:integration:ui",
"test:e2e:headed": "pnpm run test:integration:headed",
"test:e2e:debug": "pnpm run test:integration:debug",
"test:e2e:report": "pnpm run test:integration:report",
"test:e2e:p0": "pnpm run test:integration:p0",
"test:e2e:p1": "pnpm run test:integration:p1",
"test:e2e:showcase": "pnpm run test:integration:showcase"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@playwright/test": "^1.48.0",
"concurrently": "^8.2.2",
"turbo": "^1.11.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}