forked from dizlexic/moo-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "agent-task-mcp-server",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"serve": "node .output/server/index.mjs",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:seed": "tsx server/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "tsx scripts/migrate.ts"
},
"dependencies": {
"@nuxtjs/mcp-toolkit": "^0.13.4",
"@tailwindcss/vite": "^4.2.3",
"drizzle-orm": "^0.45.2",
"mysql2": "^3.11.0",
"nanoid": "^5.1.9",
"nodemailer": "^8.0.6",
"nuxt": "^4.4.2",
"nuxt-auth-utils": "^0.5.29",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tailwindcss": "^4.2.3",
"vue": "^3.5.32",
"vue-router": "^5.0.4",
"vuedraggable": "^4.1.0",
"zod": "^4.3.6",
"drizzle-kit": "^0.31.10",
"tsx": "^4.19.3"
},
"devDependencies": {
"@types/nodemailer": "^8.0.0"
}
}