-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 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
37
38
{
"name": "my-ideations",
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf .turbo node_modules pnpm-lock.yaml",
"clean:all": "turbo clean",
"db:push": "pnpm -F db push",
"db:reset": "pnpm -F db reset",
"db:studio": "pnpm -F db studio",
"dev": "turbo dev --parallel",
"format": "prettier . -w -u --ignore-path .gitignore",
"gen": "turbo gen",
"lint": "turbo lint",
"sb:restart": "supabase stop && supabase start",
"sb:types": "pnpm --silent with-env supabase gen types typescript > packages/lib/supabase/types.gen.ts && prettier packages/lib/supabase/types.gen.ts -w",
"with-env": "dotenv -e .env.production.local --",
"": "add-scripts-above-this-line"
},
"devDependencies": {
"@my/prettier-config": "workspace:*",
"@turbo/gen": "~2.8",
"supabase": "^2.77",
"turbo": "~2.8",
"typescript": "~6.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
},
"packageManager": "pnpm@10.26.1",
"prettier": "@my/prettier-config",
"private": true
}