-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prestart": "next build",
"start": "next start",
"migration:deploy": "npx prisma migrate deploy",
"migration:save": "npx prisma migrate dev --name create-tables",
"migration:reset": "npx prisma migrate reset",
"migration:build": "npx prisma generate"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@prisma/client": "^3.5.0",
"aos": "^2.3.4",
"formik": "^2.2.6",
"framer-motion": "^4.1.16",
"handlebars": "^4.7.7",
"jump.js": "^1.0.2",
"next": "^12.0.4",
"nodemailer": "^6.7.1",
"prisma": "^3.5.0",
"react": "^17.0.2",
"react-calendar": "^3.4.0",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-calendar": "^3.4.0",
"@types/styled-components": "^5.1.9",
"typescript": "^4.5.2"
}
}