-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "chatterbackend",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "node src/server",
"lint": "eslint ./**/*.js",
"lint-fix": "prettier-eslint ./**/*.js --write",
"test": "jest -i",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(ts|js)": [
"prettier-eslint --write",
"eslint",
"git add"
]
},
"keywords": [],
"author": "saurabh jindal",
"license": "ISC",
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"googleapis": "^75.0.0",
"helmet": "^4.0.0",
"http-status": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"jwt-then": "^1.0.1",
"moment": "^2.27.0",
"mongoose": "^5.9.28",
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"querystring": "^0.2.1",
"uuidv4": "^6.2.8",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
}
}