-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "node -e \"const fs=require('node:fs'); for (const file of ['package-lock.json','yarn.lock']) { try { fs.rmSync(file, { force: true }); } catch {} } const ua=process.env.npm_config_user_agent || ''; if (!ua.startsWith('pnpm/')) { console.error('Use pnpm instead'); process.exit(1); }\"",
"dev": "pnpm --filter @workspace/scripts run dev",
"build": "pnpm run typecheck && pnpm -r --if-present run build",
"build:api": "pnpm --filter @workspace/api-server run build",
"build:frontend": "pnpm --filter @workspace/ai-readiness run build",
"migrate": "pnpm --filter @workspace/db run migrate",
"typecheck:libs": "tsc --build",
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --if-present run typecheck"
},
"private": true,
"devDependencies": {
"typescript": "~5.9.2",
"prettier": "^3.8.1"
}
}