-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"postinstall": "manypkg check",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"dev": "turbo dev --parallel",
"dev:web": "turbo --filter @vivat/nextjs dev",
"dev:android": "pnpm --filter expo dev:android",
"dev:ios": "pnpm --filter expo dev:ios",
"dev:expo": "pnpm --filter expo dev",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache'",
"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": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@manypkg/cli": "^0.21.0",
"@turbo/gen": "^1.10.15",
"@vivat/prettier-config": "^0.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"turbo": "^1.10.15",
"typescript": "^5.2.2"
},
"prettier": "@vivat/prettier-config",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm format:fix",
"pnpm lint"
],
"**/*.{json,css,scss,md,webmanifest}": [
"pnpm lint"
]
}
}