-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.85 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
39
40
41
42
43
44
45
46
{
"name": "react-native-expo-supabase-starter-kit",
"private": true,
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "manypkg fix",
"build": "turbo build --cache-dir=.turbo",
"clean": "git clean -xdf node_modules dist",
"clean:workspaces": "turbo clean",
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
"format": "turbo format --cache-dir=.turbo --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='./.gitignore'",
"format:fix": "turbo format --cache-dir=.turbo --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='./.gitignore'",
"lint": "turbo lint --cache-dir=.turbo --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --cache-dir=.turbo --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck --cache-dir=.turbo",
"test": "turbo test --cache-dir=.turbo",
"expo:doctor": "pnpm --filter app run doctor",
"update": "pnpm update -r",
"supabase:web:start": "pnpm --filter app supabase:start",
"supabase:web:stop": "pnpm --filter app supabase:stop",
"supabase:web:typegen": "pnpm --filter app supabase:typegen",
"supabase:web:reset": "pnpm --filter app supabase:reset",
"stripe:listen": "pnpm --filter '@kit/stripe' start"
},
"devDependencies": {
"@manypkg/cli": "catalog:",
"@turbo/gen": "catalog:",
"@types/node": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-is": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"supabase"
]
}
}