forked from jimaa-maya/LocalEats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.98 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
{
"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": {
"start": "nodemon src/app.js",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"validate-staged": "lint-staged",
"postinstall": "husky install && husky add .husky/pre-commit \"yarn validate-staged\" && husky add .husky/pre-push \"yarn test\""
},
"dependencies": {
"@firebase/storage": "^0.11.2",
"@google-cloud/storage": "^6.12.0",
"bcryptjs": "^2.4.3",
"chai": "^4.3.7",
"cookie-parser": "^1.4.6",
"dotenv": "^14.2.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"firebase": "^10.1.0",
"firebase-admin": "^11.10.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.0.17",
"mongoose": "^7.3.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.4",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0",
"yarn-upgrade-all": "^0.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"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.5.1",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}