-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 3.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ai-farm-brain",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run media:run & npm run ui & wait -n; kill 0'",
"kill": "bash -lc 'PIDS=$(lsof -ti :3333 -ti :8091 2>/dev/null | sort -u); if [ -n \"$PIDS\" ]; then kill $PIDS; fi'",
"ui": "npm run ui:styles:watch & npm run ui:js:watch & DOTENV_CONFIG_PATH=.env.dev NODE_ENV=development tsx watch src/server.ts",
"media:venv": "cd media_service && python3 -m venv .venv",
"media:install": "cd media_service && . .venv/bin/activate && pip install -e .",
"media:run": "cd media_service && . .venv/bin/activate && uvicorn media_service.app:app --host 0.0.0.0 --port 8091",
"media:dev": "npm run media:run",
"prod": "DOTENV_CONFIG_PATH=.env NODE_ENV=production tsx src/runner.ts",
"build:server": "tsc -p tsconfig.json --noCheck",
"build": "npm run ui:styles && npm run ui:js:build && npm run build:server",
"reset-db:dev": "DOTENV_CONFIG_PATH=.env.dev NODE_ENV=development tsx scripts/reset-db.ts",
"reset-db:prod": "DOTENV_CONFIG_PATH=.env NODE_ENV=production tsx scripts/reset-db.ts",
"migrate": "tsx scripts/migrate.ts",
"migrate:dev": "DOTENV_CONFIG_PATH=.env.dev NODE_ENV=development tsx scripts/migrate.ts",
"migrate:prod": "DOTENV_CONFIG_PATH=.env NODE_ENV=production tsx scripts/migrate.ts",
"migrate:compiled": "NODE_ENV=production node dist/scripts/migrate.js",
"start:compiled": "NODE_ENV=production node dist/src/server.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "npm run typecheck && npm test",
"eval:ai-story": "DOTENV_CONFIG_PATH=.env.test NODE_ENV=test tsx scripts/run-ai-story-eval.ts",
"ui:js:build": "vite build",
"ui:js:watch": "vite build --watch",
"ui:styles": "tailwindcss -i src/ui/styles/input.css -o src/ui/styles/tailwind.css",
"ui:styles:watch": "tailwindcss -i src/ui/styles/input.css -o src/ui/styles/tailwind.css --watch",
"test": "DOTENV_CONFIG_PATH=.env.test NODE_ENV=test tsx scripts/migrate.ts && DOTENV_CONFIG_PATH=.env.test NODE_ENV=test vitest run --maxWorkers=1",
"test:watch": "DOTENV_CONFIG_PATH=.env.test NODE_ENV=test vitest"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@primeuix/themes": "^2.0.3",
"@types/pg": "^8.16.0",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"bullmq": "^5.67.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"form-data": "^4.0.0",
"ioredis": "^5.9.2",
"jsdom": "^24.1.0",
"mustache": "^4.2.0",
"node-cron": "^3.0.3",
"openai": "^4.56.0",
"pg": "^8.18.0",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"rss-parser": "^3.13.0",
"sortablejs": "^1.15.7",
"vue": "^3.5.28",
"vue-router": "^4.6.4",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.18",
"@types/express": "^5.0.6",
"@types/jsdom": "^28.0.0",
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.0",
"@types/node-cron": "^3.0.11",
"@vitejs/plugin-vue": "^6.0.4",
"esbuild": "^0.27.3",
"tailwindcss": "^4.1.18",
"tsx": "^4.16.2",
"typescript": "^5.6.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}