-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "backend-capstone",
"version": "1.0.0",
"main": "src/app.js",
"repository": "[email protected]:ReCoded-Org/backend-capstone-template.git",
"author": "Ammar-64",
"license": "MIT",
"scripts": {
"app": "nodemon src/app.js",
"cron": "nodemon src/services/cronServer.js",
"start": "npm-run-all --parallel app cron",
"test": "export IS_JEST=1 && 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 add .husky/pre-commit \"yarn validate-staged\" && husky add .husky/pre-push \"yarn test\""
},
"dependencies": {
"axios": "^0.26.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"generate-password": "^1.7.0",
"is-image-url": "^1.1.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.8",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"npm-run-all": "^4.1.5",
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.0",
"unique-username-generator": "^1.0.1",
"winston": "^3.5.1",
"yarn-upgrade-all": "^0.6.1"
},
"devDependencies": {
"eslint": "^8.8.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-jest": "^26.0.0",
"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.5.0",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}