generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
57 lines (57 loc) · 2.12 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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 format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck"
},
"dependencies": {
"@graysky/eslint-config": "0.1.0",
"@graysky/prettier-config": "0.1.0",
"@manypkg/cli": "^0.21.4",
"eslint": "^9.7.0",
"prettier": "^3.3.3",
"turbo": "^2.0.9",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.19.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"sharp": "0.32.6",
"use-deep-compare": "npm:[email protected]"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"react-native-collapsible-tab-view": "patches/react-native-collapsible-tab-view.patch"
}
},
"prettier": "@graysky/prettier-config",
"devDependencies": {
"@crowdin/cli": "^4.1.2"
}
}