-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 857 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 857 Bytes
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
{
"name": "nf",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:push": "turbo db:push",
"clean": "git clean -xdf .cache .turbo dist node_modules .next",
"clean:workspaces": "turbo clean",
"db:studio": "turbo db:studio",
"db:migrate": "turbo db:migrate",
"db:generate": "turbo dbgenerate",
"bump-deps": "npx npm-check-updates -i --deep"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@turbo/gen": "^2.5.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"typescript": "5.8.3"
},
"packageManager": "pnpm@10.12.4",
"engines": {
"node": ">=18"
}
}