-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 957 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 957 Bytes
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
{
"name": "si-portal",
"private": true,
"version": "0.1.0",
"description": "SI 클라이언트 요청·운영 통합 포털 (monorepo)",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"db:migrate": "node --env-file-if-exists=.env packages/db/scripts/migrate.mjs",
"db:seed": "node --env-file-if-exists=.env packages/db/scripts/seed.mjs",
"db:reset": "node --env-file-if-exists=.env packages/db/scripts/reset.mjs",
"db:smoke": "node --env-file-if-exists=.env packages/db/scripts/smoke.mjs",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\""
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"ioredis": "5.11.1"
}
}
}