generated from BuildforSDG-Cohort1-Assessment/covid-19-estimator-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
47
48
49
{
"name": "covid-19-estimator-js",
"version": "1.0.0",
"repository": "git@github.com:BuildforSDG-Cohort1-Assessment/covid-19-estimator-js.git",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint ./src/",
"build": "npx babel index.js -o main.bundle.js",
"dev": "nodemon --exec npx babel-node index.js",
"start": "node index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^14.3.1",
"morgan": "^1.10.0",
"on-covid-19": "^0.1.3",
"xml": "^1.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"babel-jest": "^25.2.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-dynamic-import-node-sync": "^2.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.2.0",
"nodemon": "^2.0.3",
"source-map-support": "^0.5.16"
},
"browserslist": [
"last 1 Chrome versions"
]
}