-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 853 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
35
{
"name": "saas-supabase-template",
"private": true,
"scripts": {
"clean:workspaces": "turbo clean",
"check:types": "turbo typecheck",
"build": "turbo run build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"vercel:update:env": "vercel env add",
"sync:list": "pnpm exec syncpack -- list",
"sync:list-mistmakes": "syncpack list-mismatches"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.2.5",
"syncpack": "^12.3.2",
"turbo": "^1.13.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}