-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "dmk",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "node prisma/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.16.2",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/qrcode": "^1.5.5",
"@types/uuid": "^11.0.0",
"bcryptjs": "^3.0.2",
"clsx": "^2.1.1",
"jsonwebtoken": "^9.0.2",
"next": "^15.5.4",
"next-intl": "^4.3.9",
"prisma": "^6.16.2",
"qrcode": "^1.5.4",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4",
"postcss": "^8.5.6",
"typescript": "^5.9.2"
}
}