generated from RCDD-202303-TUR-BEW/backend-capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "home-taste",
"version": "1.0.0",
"main": "src/app.ts",
"repository": "[email protected]:ReCoded-Org/backend-capstone-template.git",
"author": "Ammar-64",
"license": "MIT",
"scripts": {
"start": "nodemon src/app.ts",
"test": "set NODE_ENV=test && jest --passWithNoTests --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts)\"",
"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": {
"@nestjs/passport": "^10.0.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.39.0",
"cookie-parser": "^1.4.6",
"cookie-signature": "^1.2.1",
"crypto": "^1.0.1",
"dotenv": "^14.2.0",
"ejs": "^3.1.9",
"error-handler": "^1.0.0",
"express": "^4.17.2",
"googleapis": "^122.0.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.6.0",
"mongoose": "^7.3.1",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.3",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"path": "^0.12.7",
"swagger": "^0.7.5",
"swagger-editor": "^4.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"typescript": "^5.1.6",
"yarn-upgrade-all": "^0.6.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cookie-signature": "^1.1.0",
"@types/express": "^4.17.17",
"@types/express-status-monitor": "^1.3.0",
"@types/jest": "^29.5.3",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.1",
"@types/nodemailer": "^6.4.8",
"@types/passport": "^1.0.12",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-jwt": "^3.0.9",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"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.27.5",
"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": "^29.6.1",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}