This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
{
"name": "second-module",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nodemon src/server.js",
"start": "node src/server.js",
"queue-dev": "nodemon src/queue.js",
"queue": "node src/queue.js",
"dev:debug": "nodemon --inspect src/server.js",
"linting-all": "yarn eslint --fix src --ext js"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"@sentry/node": "5.7.1",
"aws-sdk": "^2.567.0",
"aws-smtp-credentials": "^1.0.0",
"bcryptjs": "^2.4.3",
"beequeue": "^0.3.4",
"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": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.3.1",
"nodemailer-express-handlebars": "^3.1.0",
"nodemailer-ses-transport": "^1.5.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"prettier": "^1.18.2",
"redis": "^2.8.0",
"sequelize": "^5.21.1",
"youch": "^2.0.10",
"yup": "^0.27.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"node-env-run": "^3.0.2",
"nodemon": "^1.19.4",
"sequelize-cli": "^5.5.1",
"sucrase": "^3.10.1"
},
"resolutions": {
"nodemailer-express-handlebars/handlebars": "^4.5.3",
"express-handlebars/handlebars": "^4.5.3"
}
}