-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "next-jwt-auth-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/card": "^2.1.1",
"@chakra-ui/react": "^2.3.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@prisma/client": "4.6.1",
"@sentry/nextjs": "^7.28.1",
"@types/node": "^18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"bcrypt": "^5.1.0",
"cookie-universal": "^2.2.2",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"framer-motion": "^6",
"jsonwebtoken": "^8.5.1",
"next": "13.0.3",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.3",
"react-icons": "^4.6.0",
"swr": "^1.3.0",
"typescript": "^4.8.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"ts-node": "^10.9.1"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}