-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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
63
64
65
{
"name": "voluntera",
"version": "1.0.0",
"main": "src/app.js",
"repository": "[email protected]:RCDD-202110-TUR-BEW/backend-capstone-turkey-voluntera.git",
"author": "Voluntera team",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development nodemon src/app.js",
"start-app": "NODE_ENV=production node src/app.js",
"test": "yarn validate && jest --passWithNoTests --runInBand",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"validate": "yarn format && yarn lint",
"validate-staged": "lint-staged",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "yarn validate-staged",
"pre-push": "yarn test"
}
},
"engines": {
"node": ">=16.4.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.2",
"mongoose": "^6.2.2",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-google-oidc": "^0.1.0",
"passport-local": "^1.0.0",
"pino": "^7.8.0",
"pino-pretty": "^7.5.1",
"sinon": "^13.0.1",
"swagger-ui-express": "^4.3.0",
"yarn-upgrade-all": "^0.6.1"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
}
}