forked from Danm72/mission-control
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.04 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
56
57
{
"name": "mission-control",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --exclude '**/integration/**' --exclude '**/e2e/**'",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:up": "docker compose -f docker-compose.integration.yml up -d",
"test:integration:down": "docker compose -f docker-compose.integration.yml down -v",
"test:integration:logs": "docker compose -f docker-compose.integration.yml logs -f",
"test:integration:run": "vitest run --config vitest.integration.config.ts",
"test:ai:live": "LIVE_AI_TESTS=true pnpm test:integration -- tests/integration/api/onboarding-chat.test.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:visual": "playwright test --grep @visual",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo clean && rm -rf node_modules",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/node": "^22.0.0",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"bcrypt": "^6.0.0",
"happy-dom": "^20.5.0",
"husky": "^9.0.0",
"jsdom": "^28.0.0",
"prettier": "^3.4.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}