-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "nullpass",
"version": "1.0.0",
"description": "Auth service for null apps",
"license": "ISC",
"author": "",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@arcjet/inspect": "^1.0.0-beta.14",
"@arcjet/next": "^1.0.0-beta.14",
"@polar-sh/nextjs": "^0.7.0",
"@prisma/client": "^5.19.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"next": "^16.0.7",
"pg": "^8.11.3",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"speakeasy": "^2.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.12",
"@types/pg": "^8.10.9",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/speakeasy": "^2.0.10",
"prisma": "^5.19.1",
"typescript": "^5.5.4"
}
}