-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "covid-19-estimator-js",
"version": "1.0.0",
"repository": "git@github.com:tksilicon/covid-19-estimator-js.git",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "jest",
"start": "node --experimental-modules --experimental-json-modules ./src/index.js"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"helmet": "^3.22.0",
"morgan": "^1.10.0",
"on-covid-19": "^0.1.3",
"properties-reader": "^1.0.0",
"slice-file": "^1.0.0",
"swagger-ui-express": "^4.1.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.2.0",
"jest": "^25.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"supertest": "^4.0.2"
},
"browserslist": [
"last 1 Chrome versions"
],
"type": "module"
}