-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.03 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
36
{
"name": "nucleus",
"private": true,
"engines": {
"node": ">=22.20.0",
"pnpm": ">=10.19.0"
},
"packageManager": "pnpm@10.19.0",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"auth:generate": "pnpm -F @nucleus/auth generate",
"db:push": "turbo -F @nucleus/db push",
"db:studio": "turbo -F @nucleus/db studio",
"dev": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @nucleus/nextjs...",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"dep:check": "pnpm dlx sherif@latest",
"postinstall": "pnpm dep:check",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add",
"android": "expo run:android",
"ios": "expo run:ios",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@turbo/gen": "^2.9.16",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"turbo": "^2.9.16",
"typescript": "catalog:"
}
}