-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 992 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
33
34
{
"name": "create-t3-turbo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --continue",
"biome": "turbo run format-and-lint",
"biome:fix": "biome check . --write",
"format-and-lint": "biome check .",
"typecheck": "turbo run typecheck",
"clean": "git clean -xdf node_modules .turbo",
"clean:workspaces": "turbo run clean",
"check-updates": "ncu -ws",
"update-deps": "ncu -ws -i",
"migrate": "bun -C packages/db migrate",
"migrate:dev": "bun -C packages/db migrate:dev",
"ui-add": "turbo run ui-add",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rwx/api": "workspace:*",
"@turbo/gen": "^2.3.3",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]",
"workspaces": ["apps/*", "packages/*", "tooling/*"],
"dependencies": {
"npm-check-updates": "^17.1.11"
}
}