-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "gateway",
"version": "1.0.0",
"description": "Camada de comunicação entre os microsserviços e o Front-end",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node ./src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./src/server.js",
"lint": "eslint . --ext .js --fix",
"lint-ci": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lend-it/Gateway.git"
},
"author": "Lend.it",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lend-it/Gateway/issues"
},
"homepage": "https://github.com/Lend-it/Gateway#readme",
"dependencies": {
"@sentry/node": "^5.30.0",
"axios": "^0.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"form-data": "^4.0.0",
"multer": "^1.4.2",
"youch": "^2.0.10"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
}
}