-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 975 Bytes
/
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
{
"name": "ts-rest-tut",
"private": true,
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"start": "turbo start",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:migrate-prod": "turbo db:migrate-prod",
"db:studio": "turbo db:studio",
"db:push": "turbo db:push db:generate",
"dev": "turbo dev --parallel",
"dev-web": "turbo dev --filter web",
"dev-admin": "turbo dev --filter admin",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"test": "turbo test"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"prettier": "^3.2.5",
"turbo": "^2.0.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}