-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "ukachat",
"version": "1.0.0",
"description": "Chatting website",
"main": "server.js",
"type": "module",
"scripts": {
"server": "nodemon server.js",
"client": "npm run client --prefix ./client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"keywords": [],
"author": "Unnat Kumar Agarwal",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1"
},
"dependencies": {
"body-parser": "^1.20.2",
"cloudinary": "^1.41.0",
"colors": "^1.4.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"formidable": "^3.5.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.13",
"redis": "^4.6.13",
"socket.io": "^4.7.2"
}
}