-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
106 lines (106 loc) · 2.97 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
102
103
104
105
106
{
"name": "react-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:debug-nock": "DEBUG=nock.* react-scripts test --env=jest-environment-jsdom-sixteen",
"test:coverage": "react-scripts test --ci --env=jest-environment-jsdom-sixteen --coverage --watchAll=false",
"lint": "eslint .",
"eject": "react-scripts eject",
"pre-push": "eslint ."
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"text-summary"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@hookform/resolvers": "2.8.1",
"loop-react-auth": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/md5": "^2.3.1",
"@types/node": "^16.10.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"axios": "^0.21.4",
"axios-case-converter": "^0.8.1",
"emotion": "^11.0.0",
"emotion-theming": "^11.0.0",
"flat": "^5.0.2",
"md5": "^2.3.0",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.16.2",
"react-intl": "^5.20.12",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"typescript": "^4.4.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@types/react-intl": "^3.0.0",
"@types/react-router-dom": "^5.3.0",
"decamelize": "^5.0.1",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^4.12.4",
"history": "^5.0.1",
"husky": "^4.3.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"map-obj": "^4.3.0",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"react-axe": "^3.5.3",
"source-map-explorer": "^2.5.2"
},
"husky": {
"hooks": {
"pre-push": "yarn pre-push"
}
}
}