-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
{
"name": "covid19-badges",
"version": "1.0.0",
"description": "svg badges displaying cases, deaths, and 24h changes",
"main": "src/server.js",
"scripts": {
"start": "NODE_ENV=production node ./src/server.js",
"dev": "NODE_ENV=development nodemon ./src/server.js",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watchAll",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/opensource-covid19/bagdes.git"
},
"keywords": [
"covid-19",
"covid19",
"badges"
],
"author": "OpenSource COVID-19",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensource-covid19/bagdes/issues"
},
"homepage": "https://github.com/opensource-covid19/bagdes#readme",
"dependencies": {
"axios": "^0.19.2",
"axios-cache-adapter": "^2.5.0",
"badgen": "^3.0.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"helmet": "^3.21.3",
"http-errors": "^1.7.3",
"markdown-it": "^10.0.0",
"morgan": "^1.9.1",
"node-cache": "^5.1.0",
"numeral": "^2.0.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
"*.test.js"
]
}
}