-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "lippy-agent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"worker": "node --env-file=.env --import tsx scripts/worker.ts",
"db:deploy": "prisma migrate deploy",
"test:integration": "vitest run tests/integration",
"demo": "node --env-file=.env --import tsx scripts/demo.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@prisma/client": "^6.5.0",
"cheerio": "^1.2.0",
"jose": "^6.2.12",
"next": "^15.5.25",
"react": "19.0.0",
"react-dom": "19.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-next": "^15.5.25",
"prisma": "^6.5.0",
"tsx": "^4.23.13",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}