-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 949 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 949 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
31
32
33
34
35
36
37
38
{
"name": "notpadd",
"private": true,
"scripts": {
"postinstall": "turbo run build --filter=./packages/auth --filter=./packages/db",
"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:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"db:studio": "turbo run db:studio"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"prettier": "^3.6.2",
"turbo": "^2.5.5",
"typescript": "5.8.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"dotenv": "^16.6.1"
},
"pnpm": {
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"esbuild": "0.25.12",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
}
}