-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.9 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "blitzpack",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Production-ready Full Stack TypeScript monorepo with Next.js and Fastify",
"scripts": {
"dev": "turbo run dev",
"dev:tui": "turbo run dev --ui=tui",
"dev:debug": "turbo run dev --verbose",
"dev:web": "turbo run dev --filter @repo/web",
"dev:api": "turbo run dev --filter @repo/api",
"dev:app": "turbo run dev --filter @repo/web --filter @repo/api",
"email": "turbo run email:dev",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"smoke:create-blitzpack": "pnpm tsx create-blitzpack/scripts/scaffold-matrix-smoke.ts",
"smoke:create-blitzpack:ci": "pnpm tsx create-blitzpack/scripts/scaffold-matrix-smoke.ts --skip-typecheck",
"smoke:create-blitzpack:full": "pnpm tsx create-blitzpack/scripts/scaffold-matrix-smoke.ts --full",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test:parallel": "turbo run test --concurrency=3",
"graph": "turbo run build --graph=graph.html && open graph.html",
"analyze": "turbo run build --dry-run=json > build-plan.json",
"prepare": "husky || true",
"db:generate": "pnpm --filter @repo/api db:generate",
"db:migrate": "pnpm --filter @repo/api db:migrate",
"db:push": "pnpm --filter @repo/api db:push",
"db:studio": "pnpm --filter @repo/api db:studio",
"db:seed": "pnpm --filter @repo/api db:seed"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.19.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^61.0.2",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^15.5.2",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tsx": "^4.21.0",
"turbo": "^2.7.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"react": "19.2.1",
"react-dom": "19.2.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3"
}
}
}