-
Notifications
You must be signed in to change notification settings - Fork 639
/
package.json
58 lines (58 loc) · 2.04 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": "novelcovid-api",
"version": "1.0.1",
"description": "A simple Node API for getting coronavirus cases from scraped information.",
"main": "server.js",
"repository": {
"url": "https://github.com/disease-sh/api"
},
"license": "MIT",
"keywords": [
"API",
"coronavirus",
"covid"
],
"scripts": {
"updateCheck": "node updateCheck.js",
"start": "node server.js",
"start:scraper": "node serverScraper.js",
"start:devserver": "nodemon --watch routes --watch scrapers --watch utils ./server.js",
"start:dev": "concurrently --kill-others-on-fail --kill-others \"npm:start:devserver\" \"npm:start:scraper\"",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint ./**/*.js --fix",
"lint:win32": "eslint ./**/*.js",
"test": "mocha ./tests --exit --recursive --timeout 300000",
"test-single": "mocha $1 --exit --timeout 300000",
"docker-start": "docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d --pull always",
"docker-down": "docker compose -f docker-compose.yml -f docker-compose.prod.yml down --rmi all",
"docker-start-dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build",
"docker-down-dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml down --rmi all",
"docker-test": "docker compose -f docker-compose.yml -f docker-compose.test.yml up --abort-on-container-exit --build"
},
"dependencies": {
"@sentry/node": "5.12.2",
"axios": "^0.28.0",
"axios-cookiejar-support": "^1.0.1",
"cheerio": "^0.22.0",
"cookie-parser": "1.4.5",
"cors": "^2.8.5",
"csurf": "1.11.0",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"ejs": "3.1.7",
"express": "^4.17.3",
"ioredis": "*",
"mailgun-js": "^0.22.0",
"swagger-ui-express": "^4.1.4",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@aero/eslint-config": "^1.0.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"mocha": "^7.2.0",
"nodemon": "^3.1.0"
}
}