-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.4 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
67
68
69
70
71
72
73
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:docker": "docker-compose -f docker-compose.dev.yml up -d",
"dev:test": "dotenv -e .env.stagging.test.local next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prisma:explore": "prisma studio",
"prisma:explore-test": "dotenv -e .env.stagging.test.local prisma studio",
"postinstall": "prisma generate",
"migrate": "prisma migrate dev"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.457.0",
"@aws-sdk/client-s3": "^3.456.0",
"@aws-sdk/client-ses": "^3.489.0",
"@aws-sdk/lib-storage": "^3.456.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.12",
"@mui/material": "^5.14.18",
"@mui/styled-engine-sc": "^6.0.0-alpha.6",
"@mui/x-date-pickers": "^6.18.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.5.2",
"autoprefixer": "latest",
"bcrypt": "^5.1.1",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"file-type": "^19.0.0",
"formik": "^2.4.5",
"mocha": "^10.2.0",
"next": "^13.5.4",
"next-auth": "^4.23.2",
"nodemailer": "^6.9.8",
"pino": "^8.16.0",
"prisma-uml": "^1.1.18",
"react": "latest",
"react-dom": "latest",
"react-dropzone": "^14.2.3",
"react-player": "^2.14.1",
"react-toastify": "^9.1.3",
"styled-components": "^6.1.1",
"uuid": "^9.0.1",
"yup": "^1.3.2"
},
"devDependencies": {
"@testing-library/cypress": "^10.0.1",
"@types/bcrypt": "^5.0.1",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "^9.0.6",
"cypress": "^13.6.6",
"dotenv-cli": "^7.3.0",
"eslint": "latest",
"eslint-config-next": "latest",
"mochawesome": "^7.1.3",
"mochawesome-json-to-md": "^0.7.2",
"mochawesome-merge": "^4.3.0",
"postcss": "latest",
"prisma": "^5.5.2",
"screenfull": "^6.0.2",
"typescript": "latest"
}
}