-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "workflow-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:web": "npm run dev --prefix web",
"dev:all": "concurrently -n api,web -c blue,green \"npm run dev\" \"npm run dev:web\"",
"start": "node dist/index.js",
"build": "npm run build:web && tsc",
"build:web": "npm run build --prefix web",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@azure/msal-node": "^3.6.0",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@fastify/static": "^8.3.0",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^11.9.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"fastify": "^5.3.3",
"nanoid": "^5.1.5",
"openai": "^4.103.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.21",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}