-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "recall",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.8.0",
"@xenova/transformers": "^2.17.1",
"bcryptjs": "^3.0.3",
"ioredis": "^5.3.2",
"lucide-react": "^0.300.0",
"next": "^16.1.6",
"next-auth": "^4.24.13",
"openai": "^4.26.0",
"prisma": "^6.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.11.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}