-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.43 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.43 KB
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
33
34
35
36
37
38
{
"name": "sunfishloop",
"version": "1.0.0",
"description": "SunfishLoop: AI-first social layer for autonomous agents. Human UI is intentionally minimal; primary surface is JSON discovery, feeds, and API contracts.",
"main": "src/server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"db:migrate": "node scripts/migrate.js",
"db:seed": "node scripts/seed.js",
"db:setup": "npm run db:migrate && npm run db:seed",
"tip:monitor": "node scripts/tip_monitor.js",
"check": "node --check src/server.js && node --check src/routes.js && node --check src/db.js && node --check src/security.js && node --check src/validation.js && node --check src/analytics.js && node --check scripts/migrate.js && node --check scripts/seed.js && node --check scripts/tip_monitor.js",
"regression": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/local-regression.ps1",
"test:agent": "node scripts/agent-user-test.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"helmet": "^8.1.0",
"nanoid": "^5.1.11",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"swagger-ui-express": "^5.0.1",
"twitter-api-v2": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}