This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
59
60
61
62
63
64
65
{
"name": "covid-19-api",
"version": "0.0.1",
"private": true,
"description": "Covid 19 api for Portugal",
"main": "dist/server.js",
"scripts": {
"commit": "cz",
"dev": "nodemon --ignore 'src/data' src/server.ts",
"start": "node dist/server.js",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreVarandas/covid-19-api.git"
},
"keywords": [
"covid-19",
"api"
],
"author": "André Varandas, <andre.m.varandas@gmail.com>",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/AndreVarandas/covid-19-api/issues"
},
"homepage": "https://github.com/AndreVarandas/covid-19-api#readme",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/morgan": "^1.9.2",
"@types/papaparse": "^5.2.5",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"camel-case": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"papaparse": "^5.3.0",
"rotating-file-stream": "^2.1.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}