-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"private": true,
"name": "chat-app",
"scripts": {
"lint": "next lint",
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "node dist/server/index.js"
},
"author": "Mohamed Muntasir",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"cookie-parser": "^1.4.6",
"express": "^4.17.3",
"mongoose": "^6.2.7",
"next": "latest",
"next-auth": "^4.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-loader-spinner": "^6.0.0-0",
"react-query": "^3.34.16",
"react-virtuoso": "^2.9.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"nodemon": "^2.0.15",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.0.7",
"ts-node": "^10.7.0",
"typescript": "4.5.4"
}
}