-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "express-mongodb-developer-match-rest-api",
"version": "1.0.0",
"description": "An open-source RESTful API developed using NodeJS, Express and MongoDB, helping developers connect and collaborate by offering user authentication, developer profile management, and match-based interactions.",
"main": "index.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/server.js",
"clean": "rm -rf node_modules",
"db:seed": "node src/db/seed.js",
"start:prod": "NODE_ENV=production node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saddamarbaa/node-express-mongodb-developer-match-rest-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saddamarbaa/node-express-mongodb-developer-match-rest-api/issues"
},
"homepage": "https://github.com/saddamarbaa/node-express-mongodb-developer-match-rest-api#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dotenv-safe": "^9.1.0",
"express": "^4.21.1",
"helmet": "^8.0.0",
"http-errors": "^2.0.0",
"joi": "^17.13.3",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}