-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 762 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 762 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
{
"name": "postmaker-x",
"private": true,
"scripts": {
"dev": "pnpm run --parallel dev",
"dev:api": "pnpm --filter @postmaker/api dev",
"dev:web": "pnpm --filter @postmaker/web dev",
"build": "pnpm run --parallel build",
"build:shared": "pnpm --filter @postmaker/shared build",
"tc": "pnpm run --parallel typecheck",
"tc:web": "pnpm --filter @postmaker/web typecheck",
"tc:api": "pnpm --filter @postmaker/api typecheck",
"lint": "pnpm run --parallel lint",
"db:push": "pnpm --filter @postmaker/api db:push",
"db:studio": "pnpm --filter @postmaker/api db:studio"
},
"devDependencies": {
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}