-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.39 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
{
"name": "zotmeal",
"type": "module",
"private": true,
"engines": {
"node": "20.x"
},
"engineStrict": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "pnpm -F db db:push",
"db:studio": "pnpm --filter db run db:studio",
"db:dump": "pg_dump -h icssc.cf3yrjegcna8.us-east-1.rds.amazonaws.com -U zotmeal_prod -W -O -x zotmeal > ./docker/db/zotmeal.sql",
"dev": "turbo dev --parallel --concurrency=13",
"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",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@turbo/gen": "^1.13.2",
"@zotmeal/prettier-config": "workspace:^0.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"turbo": "^1.13.2",
"typescript": "^5.4.3"
},
"prettier": "@zotmeal/prettier-config",
"pnpm": {
"overrides": {
"@auth/core": "0.20.0"
}
}
}