-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest -i test/index.test.js --runInBand --testTimeout=60000",
"test:watch": "jest -i test/index.test.js --watch --runInBand --detectOpenHandles --testTimeout=60000",
"start": "node index.js",
"feed": "node feed/index.js",
"server": "nodemon index.js",
"lint": "eslint . ",
"lint:fix": "eslint . --fix "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.15.2",
"express-fileupload": "^1.2.0",
"google-auth-library": "^8.0.3",
"hbs": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"multer": "^1.4.2",
"node-mailjet": "^3.3.1",
"nodemailer": "^6.4.17",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"socket.io-cookie-parser": "^1.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.1",
"mongodb-memory-server": "^8.7.2",
"nodemon": "^2.0.18",
"supertest": "^6.2.3"
}
}