2025-05-14 15:49:23 +08:00
|
|
|
{
|
|
|
|
|
"name": "nextjs",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev --turbopack",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
2026-03-05 17:35:50 +08:00
|
|
|
"lint": "next lint",
|
|
|
|
|
"test:contract": "node scripts/contract-check.js",
|
|
|
|
|
"test:route-align": "node scripts/route-align-check.js",
|
|
|
|
|
"test:smoke": "jest --config jest.smoke.config.js --forceExit",
|
2026-03-05 18:35:28 +08:00
|
|
|
"start:test": "NODE_ENV=test node src/index.js",
|
|
|
|
|
"brain:sync": "node scripts/process-broadcasts.js",
|
|
|
|
|
"brain:daily-check": "node scripts/daily-check.js",
|
2026-03-05 20:11:38 +08:00
|
|
|
"brain:update-memory": "node scripts/update-memory.js",
|
2026-03-07 12:52:07 +08:00
|
|
|
"broadcast:distribute": "node scripts/distribute-broadcasts.js",
|
|
|
|
|
"esp:process": "node scripts/esp-email-processor.js",
|
2026-03-07 13:38:07 +08:00
|
|
|
"psp:inspect": "node scripts/psp-inspection.js",
|
2026-03-07 14:25:23 +08:00
|
|
|
"repo:map": "node scripts/generate-repo-map.js",
|
2026-03-07 15:31:58 +08:00
|
|
|
"deploy:agent": "node scripts/bingshuo-deploy-agent.js",
|
2026-03-07 15:43:12 +08:00
|
|
|
"proxy:start": "node backend-integration/api-proxy.js",
|
|
|
|
|
"notion:poll": "node scripts/notion-signal-bridge.js poll",
|
|
|
|
|
"notion:health": "node scripts/notion-signal-bridge.js health"
|
2025-05-14 15:49:23 +08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-07 12:52:07 +08:00
|
|
|
"imapflow": "^1.2.12",
|
2026-03-06 00:18:45 +08:00
|
|
|
"next": "15.3.8",
|
2026-03-07 12:52:07 +08:00
|
|
|
"nodemailer": "^8.0.1",
|
2025-05-14 15:49:23 +08:00
|
|
|
"react": "^19.0.0",
|
2026-03-05 17:35:50 +08:00
|
|
|
"react-dom": "^19.0.0"
|
2025-05-14 15:49:23 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-03-05 17:35:50 +08:00
|
|
|
"@tailwindcss/postcss": "^4",
|
2025-05-14 15:49:23 +08:00
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
2026-03-05 17:35:50 +08:00
|
|
|
"glob": "^10.5.0",
|
|
|
|
|
"jest": "^29.7.0",
|
|
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"typescript": "^5"
|
2025-05-14 15:49:23 +08:00
|
|
|
}
|
|
|
|
|
}
|