-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "group-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --exec ts-node server.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "next lint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|tsx|json)\""
},
"dependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"@next/codemod": "^13.1.1",
"@prisma/client": "^4.8.0",
"autoprefixer": "^10.4.13",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"fs": "0.0.1-security",
"http": "0.0.1-security",
"next": "13.1.1",
"next-auth": "^4.18.7",
"next-seo": "^5.15.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"postcss": "^8.4.20",
"random-avatar-generator": "^2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.1",
"redis": "^4.6.4",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.20",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/node": "18.6.3",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/react": "^18.0.26",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"prisma": "^4.8.0",
"typescript": "^4.9.4"
}
}