-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.77 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.77 KB
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
107
{
"name": "prism-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.14",
"@fortawesome/fontawesome-free": "^5.15.2",
"@fortawesome/fontawesome-pro": "^5.15.2",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/pro-duotone-svg-icons": "^5.15.2",
"@fortawesome/pro-light-svg-icons": "^5.15.2",
"@fortawesome/pro-regular-svg-icons": "^5.15.2",
"@fortawesome/pro-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.58",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"apollo-cache-inmemory": "^1.6.6",
"cleave.js": "^1.6.0",
"clsx": "^1.1.1",
"date-fns": "^2.19.0",
"formik": "^2.2.6",
"graphql": "^15.5.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.3",
"react-scripts": "4.0.2",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"web-vitals": "^1.1.0",
"yup": "^0.32.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"lint": "eslint ./src --ext js,jsx",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"airbnb/hooks",
"plugin:jsx-a11y/recommended",
"prettier",
"plugin:prettier/recommended"
],
"plugins": [
"react",
"jsx-a11y",
"prettier"
],
"env": {
"browser": true,
"es6": true,
"jest": true
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx",
"!src/**/index.js",
"!src/**/index.jsx",
"!src/reportWebVitals.js"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 80,
"statements": 80
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.9"
}
}