-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 KB
/
package.json
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
{
"private": true,
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"build": "turbo run generate && turbo run build",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"dev": "turbo run dev",
"generate": "turbo run generate",
"format-and-lint": "turbo run generate && biome check .",
"format-and-lint:fix": "turbo run generate && biome check . --write",
"prepare": "husky",
"commitlint": "commitlint --edit",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@ls-lint/ls-lint": "v2.3.0-beta.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prisma": "5.10.2",
"sherif": "^1.0.0",
"tsx": "^4.7.1",
"turbo": "^2.1.3"
},
"engines": {
"node": ">=18"
},
"name": "with-prisma",
"packageManager": "bun@1.1.25",
"workspaces": [
"apps/*",
"packages/*"
]
}