-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "y",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 11000 --exit",
"start": "node server.js",
"dev": "nodemon server.js",
"lint-check": "eslint .",
"lint": "eslint --fix .",
"pretty": "prettier --write",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run pretty"
],
"*.{json,md}": [
"npm run pretty"
]
},
"author": "sai krishna thatipamula",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"http": "^0.0.1-security",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"winston": "^3.9.0",
"winston-cloudwatch": "^6.1.1",
"winston-daily-rotate-file": "^4.7.1",
"winston-mongodb": "^5.1.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
}
}