-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
45
46
{
"name": "nodejs-mongo-rest-api",
"version": "1.0.0",
"description": "NodeJS based rest service application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xbersoy/nodejs-mongo-rest-api.git"
},
"keywords": [
"nodejs",
"node",
"expressjs",
"express",
"mongo",
"mongoose",
"restful",
"rest"
],
"author": "xbersoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/xbersoy/nodejs-mongo-rest-api/issues"
},
"homepage": "https://github.com/xbersoy/nodejs-mongo-rest-api#readme",
"dependencies": {
"@joi/date": "^2.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.1",
"joi": "^17.4.0",
"mongoose": "^5.12.7",
"nodemon": "^2.0.7",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.3.2"
}
}