-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.06 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": "fate",
"version": "1.1.0",
"private": true,
"scripts": {
"build": "prisma migrate deploy --config prisma.config.ts && next build",
"build:ci": "next build",
"db:deploy": "prisma migrate deploy --config prisma.config.ts",
"db:push": "prisma db push --config prisma.config.ts",
"db:studio": "prisma studio --config prisma.config.ts",
"dev": "next dev",
"postinstall": "npm run prisma:generate",
"lint": "eslint .",
"prettier": "prettier --write .",
"prisma:generate": "prisma generate --config prisma.config.ts",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "3.0.53",
"@ai-sdk/react": "3.0.170",
"@aws-sdk/client-s3": "3.1031.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/utilities": "3.2.2",
"@prisma/adapter-pg": "7.7.0",
"@prisma/client": "7.7.0",
"@radix-ui/react-dropdown-menu": "2.1.16",
"ably": "2.21.0",
"ai": "6.0.168",
"bcrypt": "6.0.0",
"clsx": "2.1.1",
"lucide-react": "1.8.0",
"next": "16.2.4",
"next-auth": "4.24.14",
"openai": "6.34.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.2",
"@types/bcrypt": "6.0.0",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"autoprefixer": "10.5.0",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"postcss": "8.5.10",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-tailwindcss": "0.7.2",
"prisma": "7.7.0",
"tailwind-merge": "3.5.0",
"tailwindcss": "4.2.2",
"typescript": "6.0.3",
"vitest": "4.1.4"
},
"engines": {
"node": "24.x || 25.x"
}
}