-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.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
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
{
"name": "fullstack_demo",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "prettier . --write",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "prisma generate",
"cy:open": "cypress open",
"cy:open:e2e": "cypress open --e2e",
"cy:run:e2e": "cypress run --e2e",
"db:start": "docker-compose -f ./db/docker-compose.yml up -d",
"db:stop": "docker-compose -f ./db/docker-compose.yml down",
"db:seed": "tsx prisma/seed.ts",
"mcp:config": "node scripts/generate-mcp-config.js",
"tunnel": "cloudflared tunnel --url http://localhost:3000",
"tunnel:ngrok": "ngrok http 3000"
},
"dependencies": {
"@clerk/clerk-sdk-node": "^4.13.23",
"@clerk/mcp-tools": "^0.3.1",
"@clerk/nextjs": "^6.35.1",
"@modelcontextprotocol/sdk": "^1.20.0",
"@prisma/client": "^6.9.0",
"@upstash/redis": "^1.34.3",
"@vercel/mcp-adapter": "^1.0.0",
"dotenv": "^17.2.3",
"lowdb": "^7.0.1",
"lucide-react": "^0.468.0",
"next": "^14.2.22",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@clerk/testing": "^1.7.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^2.1.8",
"cypress": "^13.17.0",
"cypress-visual-regression": "^5.2.2",
"eslint": "^9",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^25.0.1",
"postcss": "^8",
"prettier": "^3.4.2",
"prisma": "^6.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"vitest-fetch-mock": "^0.4.3"
}
}