-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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
{
"name": "gerenciadordetarefas",
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/Josuebmota/ApiNodeJs.git",
"author": "Josuebmota <josuebatistam1@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.js",
"dev:debug": "nodemon -- inspect src/server.js",
"start": "node dist/server.js",
"build": "sucrase ./src -d ./dist --transforms imports"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.10",
"nodemailer-express-handlebars": "^4.0.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.2.4",
"url-parse": "^1.4.7",
"youch": "^2.0.10",
"yup": "^0.29.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"sequelize-cli": "^6.1.0",
"sucrase": "^3.15.0"
}
}