-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.41 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postinstall": "prisma generate",
"cypress": "cypress open",
"cypress-headless": "cypress run",
"lint": "next lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-ses": "^3.171.0",
"@aws-sdk/s3-presigned-post": "^3.540.0",
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.1.0",
"@emotion/react": "11",
"@emotion/styled": "11",
"@fullcalendar/daygrid": "^6.1.1",
"@fullcalendar/react": "^6.1.2",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^5.11.0",
"@prisma/generator-helper": "^4.15.0",
"@reduxjs/toolkit": "^1.8.1",
"babel-plugin-superjson-next": "^0.4.3",
"chakra-react-select": "^4.0.0",
"formik": "^2.2.9",
"framer-motion": "9.0.1",
"next": "^13.1.6",
"next-auth": "^4.3.2",
"react": "^18.0.0",
"react-datepicker": "^4.7.0",
"react-dom": "^18.0.0",
"react-focus-lock": "^2.12.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.1",
"sass": "^1.51.0",
"superjson": "^1.8.2",
"swr": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.0.2",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"prisma": "^5.11.0",
"prisma-erd-generator": "^1.2.5"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"overrides": {
"@chakra-ui/focus-lock": {
"react-focus-lock": "2.11.3"
}
}
}