-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest --coverage",
"test-no-color": "jest --no-color --coverage",
"lint": "eslint src/**",
"lint-fix": "eslint src/** --fix",
"migration": "sequelize db:migrate"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "2.8.5",
"debug": "2.6.9",
"dotenv": "8.1.0",
"express": "4.16.1",
"morgan": "^1.9.1",
"mysql2": "1.6.5",
"sequelize": "5.15.1",
"swagger-jsdoc": "3.4.0",
"swagger-ui-express": "4.0.7"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"eslint": "^6.2.1",
"jest": "^24.8.0",
"nodemon": "^1.19.4",
"sequelize-cli": "^5.5.0",
"sequelize-mock": "^0.10.2"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"coverageReporters": [
"text",
"json",
"html"
],
"collectCoverageFrom": [
"src/business/**/*.js"
]
}
}