-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 KB
/
package.json
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
{
"name": "passwordless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"vercel-build": "prisma migrate deploy && next build",
"prisma:studio": "prisma studio",
"prisma:migrate": "prisma migrate",
"prisma:seed": "ts-node prisma/seed.ts",
"prisma:generate": "prisma generate",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateussmohamed/passwordless.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateussmohamed/passwordless/issues"
},
"homepage": "https://github.com/mateussmohamed/passwordless#readme",
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.13.0",
"argon2": "^0.30.3",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"lucide-react": "^0.211.0",
"next": "^13.4.1",
"next-auth": "^4.22.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.12.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-next": "13.4.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.13.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
}
}