Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DgBEW6qAwgn2fcQbA2f4ZQ
34 lines
917 B
JSON
34 lines
917 B
JSON
{
|
|
"name": "pr-monitor",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch server/index.ts",
|
|
"dev:web": "vite web",
|
|
"sync:once": "tsx server/scripts/sync-once.ts",
|
|
"build": "vite build web && tsc -p tsconfig.server.json",
|
|
"start": "node dist-server/server/index.js",
|
|
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p web/tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.1.0",
|
|
"picomatch": "^4.0.2",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^24.0.0",
|
|
"@types/picomatch": "^4.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"tsx": "^4.0.0",
|
|
"typescript": "^5.9.0",
|
|
"vite": "^7.0.0"
|
|
}
|
|
}
|