-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 916 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
26
27
28
29
30
31
32
{
"name": "project2-autopost",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"run-once": "tsx src/cli.ts run-once",
"run-daily": "tsx src/cli.ts run-daily",
"autopilot": "tsx src/cli.ts autopilot",
"api:start": "node api/server.js",
"api:dev": "node --watch api/server.js",
"web:dev": "npm --prefix apps/web run dev",
"web:build": "npm --prefix apps/web run build",
"dev": "concurrently -k -n API,WEB -c cyan,magenta \"npm run api:dev\" \"npm run web:dev\""
},
"dependencies": {
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"gray-matter": "^4.0.3",
"node-cron": "^4.2.1",
"rss-parser": "^3.13.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}