-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "pax_chat",
"version": "1.0.0",
"description": "API Gateway para o Pax, servindo de camada de comunicação entre os microsserviços e o Front-End do sistema.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js",
"build": "sucrase src -d ./dist --transforms imports",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pax-app/Pax_Gateway.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pax-app/Pax_Gateway/issues"
},
"homepage": "https://github.com/pax-app/Pax_Gateway#readme",
"dependencies": {
"@sentry/node": "^5.7.1",
"date-fns": "^2.4.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"mysql2": "^1.7.0",
"node-fetch": "^2.6.0",
"sequelize": "^5.19.3",
"youch": "^2.0.10",
"yup": "^0.27.0"
},
"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",
"sucrase": "^3.10.1"
}
}