-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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": "men-restful-api",
"version": "1.0.0",
"description": "MongoDB-Express-NodeJS RESTful API",
"main": "server.js",
"scripts": {
"start-dev": "cross-env NODE_ENV=development nodemon server.js",
"test": "cross-env NODE_ENV=test mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyesedina/RestAPI.git"
},
"keywords": [
"restapi"
],
"author": "Edina Ilyes",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilyesedina/RestAPI/issues"
},
"homepage": "https://github.com/ilyesedina/RestAPI#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.15",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.3.2"
}
}