-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"format": "prettier --write .",
"lint-fix": "eslint --fix --cache --report-unused-disable-directives . ; prettier --write .",
"lint-check": "eslint --cache --report-unused-disable-directives . && prettier --check .",
"prepare": "husky install .husky"
},
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.2",
"bcrypt": "^5.0.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"email-templates": "^8.0.3",
"express": "~4.16.1",
"express-validator": "^6.9.2",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.10",
"morgan": "~1.9.1",
"nodemailer": "^6.4.17",
"pug": "^3.0.0",
"request": "^2.88.2",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"prettier": "^2.2.1"
}
}