-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.74 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.74 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
47
48
49
{
"name": "graysky",
"private": true,
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "turbo db:studio",
"dev": "pnpm dev:expo",
"dev:both": "turbo dev --parallel",
"dev:expo": "cd apps/expo && pnpm dev",
"dev:next": "cd apps/nextjs && pnpm dev",
"dev:push": "cd apps/push-notifs && pnpm dev",
"push:build": "cd apps/push-notifs && pnpm build",
"push:start": "cd apps/push-notifs && pnpm start",
"extract": "cd apps/expo && pnpm extract",
"compile": "cd apps/expo && pnpm compile",
"crowdin": "crowdin",
"sync": "crowdin push && crowdin pull",
"sync:sources": "crowdin push",
"sync:translations": "crowdin pull",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@crowdin/cli": "^4.12.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.4",
"pnpm": {
"overrides": {
"sharp": "0.32.6",
"use-deep-compare": "npm:use-deep-compare-dequal-update@2.0.0",
"color": "4.2.3"
},
"patchedDependencies": {
"react-native-collapsible-tab-view": "patches/react-native-collapsible-tab-view.patch"
}
},
"prettier": "@graysky/prettier-config"
}