-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 976 Bytes
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
{
"name": "renewly",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo run clean && rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"db:migrate": "pnpm --filter api db:migrate",
"db:push": "pnpm --filter api db:push",
"db:generate": "pnpm --filter api db:generate",
"db:seed": "pnpm --filter api db:seed",
"db:studio": "pnpm --filter api db:studio",
"prepare": "husky"
},
"devDependencies": {
"turbo": "latest",
"prettier": "^3.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"typescript": "^5.0.0"
},
"packageManager": "pnpm@9.15.4"
}