-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.08 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.08 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "synapse",
"version": "0.8.1",
"license": "AGPL-3.0",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "next dev --turbopack",
"dev:webpack": "next dev",
"build": "prisma generate && next build",
"start": "bash ./scripts/start-standalone.sh",
"start:legacy": "next start",
"preflight": "bash ./scripts/preflight.sh",
"lint": "eslint",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"docker:db": "docker compose up -d db redis",
"docker:up": "docker compose --profile full up -d",
"docker:down": "docker compose --profile full down",
"docker:build": "docker compose build",
"docker:logs": "docker compose logs -f app",
"perf:sample:remote": "bash ./scripts/perf-sample-remote.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@floating-ui/dom": "^1.7.5",
"@hello-pangea/dnd": "^18.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@streamdown/code": "^1.1.0",
"@tiptap/extension-mention": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@tiptap/suggestion": "^3.20.0",
"@xyflow/react": "^12.10.0",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dagre": "^0.8.5",
"dotenv": "^16.4.7",
"framer-motion": "^12.38.0",
"ioredis": "^5.9.3",
"jose": "^6.1.3",
"lucide-react": "^0.563.0",
"next": "^15.5.11",
"next-intl": "^4.8.2",
"oidc-client-ts": "^3.4.1",
"pg": "^8.13.1",
"pino": "^10.3.1",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"shiki": "3.23.0",
"streamdown": "^2.4.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4",
"@types/bcrypt": "^6.0.0",
"@types/dagre": "^0.7.53",
"@types/node": "^22",
"@types/pg": "^8.11.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9",
"eslint-config-next": "^15.5.11",
"pino-pretty": "^13.1.3",
"prisma": "^7.0.0",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.0",
"vitest-mock-extended": "^3.1.0"
}
}