-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.71 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
95
96
97
98
99
100
101
{
"name": "@dod-advana/advana-jira-feedback",
"version": "0.4.16",
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "git://github.com/dod-advana/advana-module-jira-feedback.git",
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-syntax-class-properties"
],
[
"@babel/plugin-proposal-private-methods",
{
"loose": true
}
]
]
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@dod-advana/advana-platform-ui": "^1.0.6",
"@material-ui/core": "4.11.4",
"@material-ui/lab": "4.0.0-alpha.58",
"bootstrap": "^5.0.1",
"email-validator": "^2.0.4",
"font-awesome": "^4.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typeface-montserrat": "^1.1.13",
"typeface-noto-sans": "^1.1.13"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --coverage --coverageDirectory=test/coverage --detectOpenHandles",
"eject": "react-scripts eject",
"publish:local": "yarn publish --registry http://localhost:4873/",
"publish:aws": "yarn publish --registry http://10.194.9.122",
"publish:prepare": "rm -rf dist && mkdir dist && babel src/lib -d dist --copy-files",
"sonarscan": "sonar-scanner"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"jest-sonar-reporter": "^2.0.0",
"msw": "^0.30.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-select-event": "^5.3.0",
"regenerator-runtime": "^0.13.7",
"sonarqube-scanner": "^2.8.1"
},
"jest": {
"testResultsProcessor": "jest-sonar-reporter",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"typeface-noto-sans": "identity-obj-proxy",
"typeface-montserrat": "identity-obj-proxy"
}
},
"jestSonar": {
"reportPath": "test/reports",
"reportFile": "test-report.xml",
"indent": 4
}
}