-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@headlessui/react": "^1.4.0",
"@next-auth/prisma-adapter": "^0.5.4",
"@prisma/client": "^3.1.1",
"@sendgrid/mail": "^7.4.7",
"axios": "^0.21.4",
"bson": "^4.4.1",
"date-fns": "^2.24.0",
"ioredis": "^4.28.0",
"next": "^11.1.2",
"next-auth": "^3.28.0",
"next-themes": "0.0.15",
"react": "^17.0.2",
"react-data-table-component": "^6.11.8",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-input-mask": "^2.0.4",
"react-query": "^3.19.6",
"react-toastify": "^7.0.4",
"styled-components": "^5.3.0",
"superjson": "^1.7.5",
"tailwind-scrollbar-hide": "^1.0.3"
},
"devDependencies": {
"@types/ioredis": "^4.27.8",
"@types/react": "^17.0.30",
"autoprefixer": "^10.2.6",
"faker": "^5.5.3",
"postcss": "^8.3.5",
"prisma": "^3.1.1",
"tailwindcss": "^2.2.4",
"typescript": "^4.4.4"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}