generated from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.51 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
{
"name": "barely",
"private": true,
"engines": {
"node": ">=20.11.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:preview": "turbo build:preview",
"build:production": "turbo build:production",
"clean": "git clean -xdf node_modules",
"clean:all": "turbo clean && pnpm clean",
"clean:next": "turbo clean:next",
"clean:workspaces": "turbo clean",
"db:check": "pnpm --filter=@barely/lib db:check",
"db:generate": "pnpm --filter=@barely/lib db:generate",
"db:push": "pnpm --filter=@barely/lib db:push",
"db:push:force": "--filter=@barely/lib db:push:force",
"db:pull": "pnpm --filter=@barely/lib db:pull",
"db:studio": "pnpm --filter=@barely/lib db:studio",
"deploy-trigger:staging": "turbo deploy-trigger:staging --filter=@barely/lib",
"deploy-trigger:production": "turbo deploy-trigger:production --filter=@barely/lib",
"dev": "./scripts/dev-qr-codes.sh && turbo dev --parallel",
"dev:enable": "chmod +x ./scripts/dev-qr-codes.sh && chmod +x scripts/dev_kill.sh && chmod +x ./scripts/create-dev-branch.sh && chmod +x ./scripts/reset-dev-branch.sh && chmod +x ./scripts/tunnelto-auth.sh",
"dev:pre": "sudo ./scripts/dev_kill.sh && turbo dev:pre",
"dev:pull": "pnpm vercel:pull-env && pnpm neon:create-dev-branch && pnpm tunnelto:auth",
"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",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"neon:create-dev-branch": "./scripts/create-dev-branch.sh",
"neon:reset-dev-branch": "./scripts/reset-dev-branch.sh",
"postinstall": "pnpm lint:ws",
"start": "turbo start",
"tunnelto": "tunnelto --scheme https --port 3000 --subdomain barely",
"tunnelto:auth": "./scripts/tunnelto-auth.sh",
"typecheck": "turbo typecheck",
"vercel:pull-env": "pnpm vercel env pull --cwd apps/app ../../.env"
},
"devDependencies": {
"@barely/prettier-config": "workspace:^0.1.0",
"prettier": "^3.2.5",
"turbo": "^1.11.3",
"typescript": "^5.5.4",
"vercel": "33.2.0"
},
"pnpm": {
"patchedDependencies": {
"@noble/[email protected]": "patches/@[email protected]",
"@mdxeditor/[email protected]": "patches/@[email protected]"
}
},
"prettier": "@barely/prettier-config"
}