-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"name": "moi-console",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"bun run dev:next\" \"bun run dev:mcp\"",
"dev:next": "next dev --turbopack",
"dev:mcp": "bun ./mcp_server/src/index.js --hot",
"build": "next build",
"start": "next start",
"lint": "next lint",
"mcp": "bun run mcp_server/src/index.ts",
"mcp:dev": "bun run mcp_server/src/index.ts --watch",
"mcp:build": "bun build mcp_server/src/index.ts --target bun --outfile mcp_server/dist/index.js",
"mcp:start": "bun run mcp_server/dist/index.js",
"generate": "prisma generate",
"test": "jest --runInBand"
},
"dependencies": {
"@apollo/client": "^3.13.8",
"@apollo/server": "^4.12.0",
"@as-integrations/next": "^3.2.0",
"@clerk/nextjs": "^6.18.5",
"apollo-server-micro": "^3.13.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.1.2",
"cross-fetch": "^4.1.0",
"daisyui": "^5.0.35",
"graphql": "^16.11.0",
"lucide-react": "^0.507.0",
"next": "15.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@prisma/client": "^6.7.0",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/testing-library__react": "^10.2.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"jest": "^29.7.0",
"prisma": "^6.7.0",
"tailwindcss": "^4",
"ts-jest": "^29.3.2",
"tw-animate-css": "^1.2.9",
"typescript": "^5"
}
}