-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "challenge_api_financeira",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"testUnitary": "mocha tests/unitary/service --reporter mochawesome --timeout 10000 --exit",
"tests": "mocha tests/integration --reporter mochawesome --timeout 10000 --exit",
"test:cov": "npx nyc npx mocha tests/integration/*.spec.js",
"test:unit": "npx nyc npx mocha tests/unitary/service/*.spec.js",
"start": "nodemon ./server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"mysql2": "^3.2.1",
"npm": "^9.6.4",
"nyc": "^15.1.0",
"sequelize": "^6.31.0",
"sequelize-cli": "^6.6.0"
},
"dependencies": {
"joi": "^17.9.2"
}
}