-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 990 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "Node JS Express Mongo DB Startup(Boilerplate) project",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "nyc mocha --require test/bootstrap.js **/*.test.js",
"generate-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"keywords": [
"node"
],
"author": "kdhttps@gmail.com",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validation": "^3.0.2",
"express-winston": "^4.0.3",
"got": "^11.8.5",
"jwks-rsa": "^1.7.0",
"lru-cache": "^5.1.1",
"mongoose": "^5.9.4",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.0",
"mocha": "^8.0.1",
"nock": "^13.0.0",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
}
}