-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
{
"name": "kuration",
"version": "0.1.0",
"description": "Semantic bookmark manager — find any saved link by meaning, not keywords.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"test": "jest"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.1",
"@prisma/client": "^5.17.0",
"next": "^14.2.5",
"next-auth": "^4.24.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"jest": "^30.3.0",
"jest-environment-node": "^30.3.0",
"prisma": "^5.17.0",
"ts-jest": "^29.4.6",
"typescript": "^5.5.4"
}
}