-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.42 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.42 KB
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
{
"name": "knighthacks",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20.12.0"
},
"packageManager": "pnpm@9.2.0",
"scripts": {
"build": "turbo run build --no-daemon",
"build:watch": "turbo run build:watch --no-daemon",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean --no-daemon",
"db:studio": "turbo -F @knighthacks/db studio --no-daemon",
"db:push": "turbo -F @knighthacks/db push --no-daemon",
"dev": " turbo --no-daemon watch dev build:watch --concurrency 11",
"format": "turbo run format --continue --no-daemon -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo run format --no-daemon --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo run lint --continue --no-daemon -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo run lint --continue --no-daemon -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck --no-daemon",
"ui-add": "turbo run ui-add --no-daemon"
},
"devDependencies": {
"@knighthacks/prettier-config": "workspace:*",
"@turbo/gen": "^2.0.3",
"prettier": "^3.3.1",
"turbo": "^2.0.3",
"typescript": "^5.4.5"
},
"prettier": "@knighthacks/prettier-config"
}