generated from mathieusouflis/turborepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "refonte-paris-musees",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "pnpm db:start && turbo run dev",
"start": "turbo run start",
"db:start": "docker compose -f docker-compose.dev.yaml --env-file .env.dev up -d",
"db:stop": "docker compose -f docker-compose.dev.yaml down",
"db:logs": "docker compose -f docker-compose.dev.yaml logs -f",
"db:shell": "docker compose -f docker-compose.dev.yaml exec db psql -U ${DB_USER:-root} -d ${DB_NAME:-database}",
"docker:prod": "docker compose -f docker-compose.prod.yaml --env-file .env.prod up --build -d",
"docker:prod:down": "docker compose -f docker-compose.prod.yaml down",
"docker:prod:logs": "docker compose -f docker-compose.prod.yaml logs -f",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.2.2"
}
}
}