-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
46
47
48
49
50
51
52
53
{
"name": "gobarber",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.js",
"queue": "nodemon src/queue.js",
"lint": "./node_modules/.bin/eslint src/**/*.js",
"migration": "npx sequelize db:migrate",
"rm-migration": "npx sequelize-cli db:migrate:undo",
"rm-all-migration": "npx sequelize-cli db:migrate:undo:all"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.6.2",
"bcryptjs": "^2.4.3",
"bee-queue": "^1.2.2",
"date-fns": "^2.4.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.3",
"multer": "^1.4.2",
"nodemailer": "^6.3.0",
"nodemailer-express-handlebars": "^3.1.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.19.2",
"youch": "^2.0.10",
"yup": "^0.27.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.8",
"nodemon": "^1.19.3",
"sequelize-cli": "^5.5.1",
"sucrase": "^3.10.1"
}
}