-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.35 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
{
"name": "agent-first-template",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm start",
"build": "pnpm api:check && tsc --noEmit && vite build --config src/app/vite.config.ts && vite build --config src/server.vite.config.ts",
"build:image": "docker build -t agent-first-template:production .",
"start": "tsx scripts/stack-start.ts",
"preview": "tsx scripts/stack-preview.ts",
"prod:up": "docker compose --env-file .env.production -f docker-compose.prod.yml up -d --build",
"prod:down": "docker compose --env-file .env.production -f docker-compose.prod.yml down",
"prod:logs": "docker compose --env-file .env.production -f docker-compose.prod.yml logs -f app",
"stop": "tsx scripts/stack-stop.ts",
"health": "tsx scripts/stack-health.ts",
"logs": "tsx scripts/stack-logs.ts",
"seed": "tsx scripts/stack-seed.ts",
"api:generate": "tsx scripts/generate-openapi.ts",
"api:check": "tsx scripts/generate-openapi.ts --check",
"test": "tsx scripts/test.ts",
"test:unit": "vitest run --exclude \"**/*.integration.test.ts\" --exclude \"**/*.integration.test.tsx\"",
"test:integration": "tsx scripts/test.ts --integration",
"test:e2e": "tsx scripts/test.ts --e2e",
"test:watch": "vitest --exclude \"**/*.integration.test.ts\" --exclude \"**/*.integration.test.tsx\"",
"lint": "biome check . && tsx lints/check-deps.ts",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx scripts/db-migrate.ts",
"check:docs": "tsx scripts/check-doc-freshness.ts",
"quality:audit": "tsx scripts/quality-audit.ts",
"worktree:boot": "bash scripts/worktree-boot.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.3",
"pnpm": {
"overrides": {
"@esbuild-kit/core-utils>esbuild": "0.25.12"
}
},
"dependencies": {
"@tanstack/react-query": "^5.100.9",
"drizzle-orm": "^0.45.2",
"fastify": "^5.8.5",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"zod": "^4.4.3"
}
}