-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
{
"name": "slack-api",
"version": "1.0.0",
"description": "Slack api to pull data form mongodb and serve to slack-web",
"main": "app.js",
"scripts": {
"start": "nodemon server.js",
"test": "cross-env NODE_ENV=test jest --testTimeout=50000"
},
"repository": {
"type": "git",
"url": "git@github.com:mounikaperi/slack-api.git"
},
"author": "'Sai Mounika Peri",
"license": "ISC",
"jest": {
"resetMocks": true,
"restoreMocks": true,
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"verbose": true,
"testResultsProcessor": "jest-sonar-reporter",
"reporters": [
"default",
"jest-junit"
],
"coveragePathIgnorePatterns": [],
"coverageThreshold": {
"global": {
"lines": 0
}
},
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
},
"jest-junit": {
"outputDirectory": "test-reports/unit",
"outputName": "junit.xml"
},
"jest-sonar": {
"reportPath": "reports",
"reportFile": "test-reporter.xml",
"indent": 4
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"chai": "^4.3.10",
"cloudinary": "^1.41.0",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"pug": "^3.0.2",
"supertest": "^6.3.3",
"validator": "^13.11.0"
}
}