-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "nearby_adda",
"version": "1.0.0",
"description": "REST API for a social networking site where user can find their neary public adda within a certain radius",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "node src/index.js",
"server": "nodemon src/index.js",
"test": "mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "ekamid"
},
"author": "Ebrahim Khalil",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"concurrently": "^7.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.15.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.8",
"nodemon": "^2.0.16",
"redis": "^4.6.5",
"swagger-ui-express": "^4.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.35.0",
"mocha": "^10.0.0"
}
}