-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "template-fullstack",
"version": "0.1.0",
"private": true,
"description": "Template fullstack: React 19 + Vite 7 + shadcn / NestJS 11 + TypeORM + PostgreSQL (pnpm monorepo)",
"packageManager": "pnpm@11.1.3",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm -r --parallel run dev",
"dev:api": "pnpm --filter @app/api run dev",
"dev:web": "pnpm --filter @app/web run dev",
"build": "pnpm -r run build",
"lint": "pnpm -r --if-present run lint",
"typecheck": "pnpm -r --if-present run typecheck",
"test": "pnpm -r --if-present run test",
"db:up": "docker compose up -d db",
"db:down": "docker compose down",
"migration:generate": "pnpm --filter @app/api run migration:generate",
"migration:run": "pnpm --filter @app/api run migration:run",
"migration:revert": "pnpm --filter @app/api run migration:revert",
"seed": "pnpm --filter @app/api run seed",
"init": "node scripts/init.mjs",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typescript": "~5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,md}": "prettier --write"
}
}