-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.96 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
{
"name": "COVID-19-REPORT-API",
"version": "1.0.0",
"description": "COVID-19-REPORT-API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "babel server --out-dir build --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon server --exec babel-node --config .nodemonrc.json | pino-pretty",
"dev:debug": "nodemon server --exec babel-node --config .nodemonrc.json --inspect | pino-pretty",
"test": "mocha --require @babel/register --exit",
"test:debug": "mocha --require @babel/register --inspect-brk --exit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prod": "now --prod -e LOG_LEVEL=debug -e SESSION_SECRET=@session_secret",
"deploy": "now -e LOG_LEVEL=debug -e SESSION_SECRET=@session_secret"
},
"dependencies": {
"body-parser": "^1.19.2",
"cookie-parser": "^1.4.4",
"country-code-lookup": "^0.0.18",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-openapi-validator": "^3.17.2",
"express-pino-logger": "^4.0.0",
"moment": "^2.29.4",
"nested-property": "^2.0.0",
"node-schedule": "^1.3.2",
"pino": "^5.17.0",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^7.2.0",
"nodemon": "^2.0.19",
"pino-pretty": "^3.5.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
},
"author": "Alaeddine Messadi <alaeddine.messadi@gmail.com> (https://github.com/AlaeddineMessadi)"
}