-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "infinite-docs",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "eslint . && tsc --noEmit",
"db:author": "node scripts/author-migration.mjs",
"db:check": "prisma migrate diff --from-config-datasource --to-schema prisma/schema.prisma --script --exit-code",
"db:migrate": "prisma migrate deploy && prisma generate",
"db:studio": "prisma studio",
"dev": "next dev",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,md,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx}\" --cache",
"postinstall": "prisma generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "next build && next start",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@base-ui/react": "^1.5.0",
"@dagrejs/dagre": "3.0.0",
"@modelcontextprotocol/sdk": "1.26.0",
"@platejs/basic-nodes": "^53.0.0",
"@platejs/link": "^53.0.3",
"@platejs/list": "^53.0.2",
"@platejs/markdown": "^53.0.4",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.101.0",
"@trpc/client": "^11.17.0",
"@trpc/react-query": "^11.17.0",
"@trpc/server": "^11.17.0",
"@xyflow/react": "^12.11.0",
"cmdk": "^1.1.1",
"graphql": "^16.14.2",
"lucide-react": "^1.17.0",
"mcp-handler": "^1.1.0",
"next": "^16.2.9",
"next-auth": "5.0.0-beta.31",
"node-sql-parser": "^5.4.0",
"platejs": "^53.0.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/mdast": "^4.0.4",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/unist": "^3.0.3",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"openapi-types": "^12.1.3",
"postcss": "^8.5.15",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.0",
"typescript-eslint": "^8.61.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.8"
},
"ct3aMetadata": {
"initVersion": "7.40.0"
},
"packageManager": "pnpm@10.33.2"
}