-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "realtime-chat-api",
"version": "1.0.0",
"description": "Create a Node.js app for building Realtime Chat RESTful APIs using Express",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altrawan/realtime-chat-api.git"
},
"keywords": [
"API",
"Node.js",
"Express.js",
"Socket.io",
"PostgreSQL"
],
"author": "Nur Muhammad Alif Putra Setiawan",
"license": "MIT",
"bugs": {
"url": "https://github.com/altrawan/realtime-chat-api/issues"
},
"homepage": "https://github.com/altrawan/realtime-chat-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"googleapis": "^104.0.0",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.5",
"pg": "^8.7.3",
"socket.io": "^4.5.1",
"uuid": "^8.3.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
}
}