-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "top-contributors-api",
"version": "1.0.0",
"description": "The REST API for the top contributors website",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jordanopensource/top-contributors-api.git"
},
"type": "module",
"author": "Mohamad Berjawi",
"license": "MIT",
"bugs": {
"url": "https://github.com/jordanopensource/top-contributors-api/issues"
},
"homepage": "https://github.com/jordanopensource/top-contributors-api#readme",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fuse.js": "^7.0.0",
"helmet": "^7.1.0",
"mongoose": "^8.0.3",
"mongoose-paginate-v2": "^1.8.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
}
}