-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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": "hoolichat-api",
"version": "1.0.0",
"description": "The API server for HooliChat, a flutter communication application for small and medium scaled businesses",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index",
"test": "node scripts/lint.js && npm run lint && npm run jest",
"lint": "esw --color",
"lint:fix": "esw --fix",
"jest": "jest",
"swagger:gen": "node docs/swaggerBuild.js"
},
"author": "Ishit Beswal <https://github.com/ishitb> (DevilIsh)",
"repository": "https://github.com/ishitb/hoolichat-api",
"readme": "README.md",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"chalk": "^3.0.0",
"cloudinary": "^1.25.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.3",
"socket.io": "^2.3.0",
"swagger-ui-express": "^4.1.6",
"validator": "^13.5.2"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-watch": "^7.0.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"swagger-autogen": "^2.7.9"
}
}