-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 993 Bytes
/
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": "iron-bank-api",
"version": "1.0.0",
"description": "API de banco digital com operações básicas bancárias",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha ./test/*.test.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagoornelas/iron-bank-api.git"
},
"author": "Tiago Ornelas <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiagoornelas/iron-bank-api/issues"
},
"homepage": "https://github.com/tiagoornelas/iron-bank-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"boleto-brasileiro-validator": "^1.0.5",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^8.4.1",
"mocha": "^9.1.3",
"sinon": "^12.0.1"
}
}