-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.44 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.44 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
{
"name": "marrylife",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "pnpm exec turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:migrate": "DATABASE_URL=postgres://${DB_USER:-marrylife}:${DB_PASS:-marrylife}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-marrylife_db} pnpm --filter @marrylife/db db:migrate",
"db:migrate:gen": "DATABASE_URL=postgres://${DB_USER:-marrylife}:${DB_PASS:-marrylife}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-marrylife_db} pnpm --filter @marrylife/db db:generate",
"db:seed": "DATABASE_URL=postgres://${DB_USER:-marrylife}:${DB_PASS:-marrylife}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-marrylife_db} pnpm --filter @marrylife/db db:seed",
"db:studio": "DATABASE_URL=postgres://${DB_USER:-marrylife}:${DB_PASS:-marrylife}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-marrylife_db} pnpm --filter @marrylife/db db:studio",
"ui:add": "pnpm dlx shadcn@latest add -c packages/ui",
"icon:gen": "svgr --config-file svgr.config.json --out-dir packages/ui/src/components/icons packages/ui/assets/icons"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@types/node": "^25.4.0",
"dotenv-cli": "^8.0.0",
"prettier": "^3.7.4",
"turbo": "^2.8.15",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}