-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.34 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
{
"name": "zkarcade--root",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.0 <19.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:dev": "turbo build:dev",
"start:dev": "turbo start:dev",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"postinstall": "pnpm lint:ws",
"db:push": "pnpm -F db push",
"db:push-dev": "pnpm -F db push:dev",
"db:push-prod": "pnpm -F db push:prod",
"db:studio-dev": "pnpm -F db studio:dev",
"db:studio-prod": "pnpm -F db studio:prod",
"dev": "turbo dev --parallel",
"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",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@zkarcade/prettier-config": "workspace:^0.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"turbo": "^1.10.16",
"@turbo/gen": "^1.10.16",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"prettier": "@zkarcade/prettier-config"
}