This repository has been archived by the owner on Mar 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "covid-back-node",
"version": "1.0.0",
"description": "covid-back-node",
"main": "index.js",
"contributors": [
"Julián Fischetti <jfischetti94@gmail.com>",
"Leandro Di Lorenzo <leandro.jdl@gmail.com>"
],
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node index.js",
"db:migrate": "sequelize db:migrate",
"dev": "nodemon --ignore node_modules ./index.js",
"lint": "eslint --ext .js ./ src/ test/",
"test": "jest",
"test:ci": "jest --verbose --coverage",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"coveralls": "coveralls < coverage/lcov.info"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"dependencies": {
"api-express-exporter": "^1.0.0",
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-paginate": "^1.0.2",
"express-routes": "^1.0.0",
"express-validator": "^6.6.1",
"http-status-codes": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"rm": "^0.1.8",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.4",
"sqlite3": "^5.0.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"collectCoverageFrom": [
"src/*.js",
"src/**/*.js"
]
}
}