-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 927 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
38
{
"name": "goBarber",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.js",
"queue": "nodemon src/queue.js",
"dev:debug": "nodemon --inspect src/server.js"
},
"dependencies": {
"@sentry/node": "5.19.1",
"bcryptjs": "^2.4.3",
"bee-queue": "^1.2.3",
"cors": "^2.8.5",
"date-fns": "^2.0.0-beta.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.22",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.10",
"nodemailer-express-handlebars": "^4.0.0",
"pg": "^8.2.1",
"sequelize": "^5.21.13",
"youch": "^2.0.10",
"yup": "^0.29.1"
},
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.2",
"sequelize-cli": "^5.5.1",
"sucrase": "^3.12.1"
}
}