-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "prommuni",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "cd backend && prisma generate",
"vercel-build": "cd backend && prisma generate && prisma migrate deploy && cd .. && next build"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@aws-sdk/abort-controller": "^3.329.0",
"@aws-sdk/client-s3": "^3.338.0",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@emotion/weak-memoize": "^0.3.1",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.140",
"@mui/material": "^5.12.3",
"@prisma/client": "^4.15.0",
"autoprefixer": "10.4.14",
"aws-sdk": "^2.1380.0",
"axios": "^1.4.0",
"easymde": "^2.18.0",
"emoji-mart": "^5.5.2",
"emoji-picker-react": "^4.4.9",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"formidable": "^2.1.2",
"jotai": "^2.1.0",
"material-ui-popup-state": "^5.0.8",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"next": "13.3.4",
"pg": "^8.10.0",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-medium-image-zoom": "^5.1.6",
"react-simplemde-editor": "^5.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"swiper": "^10.2.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"prisma": "^4.15.0"
}
}