forked from Archakov06/backend-chat-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
46
{
"name": "chat-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"watch": "nodemon"
},
"devDependencies": {
"json-server": "^0.15.0"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.135",
"@types/mongoose": "^5.5.6",
"@types/multer": "^1.3.8",
"@types/node": "^12.0.10",
"@types/nodemailer": "^6.2.1",
"@types/passport": "^1.0.0",
"@types/socket.io": "^2.1.2",
"@types/validator": "^10.11.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mongoose": "^5.6.2",
"multer": "^1.4.2",
"nodemailer": "^6.3.0",
"nodemon": "^1.19.3",
"socket.io": "^2.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"validator": "^11.0.0"
}
}