-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.93 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
88
89
90
91
92
93
94
{
"name": "speakermeet.ui",
"version": "0.1.4",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@microsoft/applicationinsights-react-js": "^3.2.1",
"@microsoft/applicationinsights-web": "^2.7.1",
"disqus-react": "^1.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-countup": "^4.4.0",
"react-dom": "^16.14.0",
"react-flip-toolkit": "^7.0.13",
"react-helmet-async": "^1.1.2",
"react-intersection-observer": "^8.32.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3"
},
"devDependencies": {
"@sheerun/mutationobserver-shim": "^0.3.3",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^5.1.3",
"@testing-library/user-event": "^12.8.3",
"compress-create-react-app": "^1.2.1",
"css-mediaquery": "^0.1.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^3.10.2",
"history": "^5.1.0",
"jest-junit": "^12.3.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"react-test-renderer": "^17.0.2",
"sonarqube-scanner": "^2.8.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && compress-cra",
"test": "react-scripts test",
"test:cover": "npm test -- --coverage --reporters=default --reporters=jest-junit --watchAll=true",
"test:cover:open": "open coverage/lcov-report/index.html",
"test:ci": "react-scripts test --coverage --reporters=default --reporters=jest-junit --watchAll=false --coverageReporters=cobertura --coverageReporters=html --coverageReporters=lcov --testResultsProcessor jest-sonar-reporter",
"sonar": "node sonar-project.js",
"eject": "react-scripts eject",
"lint": "eslint \"./src/**/*.js\" -f table"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
},
"jest-junit": {
"usePathForSuiteName": true,
"suiteNameTemplate": "{filename}",
"outputName": "coverage/jest-junit/junit.xml",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " - "
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-report.xml",
"indent": 4
}
}