-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "cortex",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && npm run build:css",
"build:css": "tailwindcss -i src/web/styles.css -o public/style.css --minify",
"dev:css": "tailwindcss -i src/web/styles.css -o public/style.css --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:unit": "vitest run --dir tests/unit",
"test:integration": "vitest run --dir tests/integration",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.27.1",
"@resvg/resvg-wasm": "^2.6.2",
"bcryptjs": "^3.0.3",
"cron-parser": "^5.5.0",
"drizzle-orm": "^0.39.0",
"grammy": "^1.41.1",
"hono": "^4.7.0",
"i18next": "^26.0.5",
"marked": "^17.0.4",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.1",
"openai": "^6.25.0",
"postgres": "^3.4.0",
"sanitize-html": "^2.17.1",
"satori": "^0.26.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"@testcontainers/postgresql": "^10.18.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.11",
"@types/sanitize-html": "^2.16.1",
"drizzle-kit": "^0.30.0",
"tailwindcss": "^4.2.1",
"testcontainers": "^10.18.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}