-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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": "covid-api",
"version": "1.0.0",
"description": "API for search data from covid-19",
"main": "index.js",
"scripts": {
"test": "mocha --recursive src/**/*.test.js --timeout 10000",
"coverage": "nyc mocha src/**/*.test.js",
"start": "node src/api/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhomarolo/covid-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhomarolo/covid-api/issues"
},
"homepage": "https://github.com/jhomarolo/covid-api#readme",
"dependencies": {
"buchu": "^1.0.11",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gotu": "^1.0.8",
"mongodb": "^3.6.2",
"swagger-jsdoc": "^4.3.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"nyc": "^15.1.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"serialize-javascript": ">=5.0.1"
}
}