-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.76 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
{
"name": "moviechooser",
"version": "0.1.0",
"private": true,
"proxy": "https://api1.moviechooser.co.uk",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage",
"test:watch": "react-scripts test --coverage --watchAll",
"eject": "react-scripts eject",
"lint:css": "stylelint './src/**/*.js'"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.28.0",
"axios-auth-refresh": "^3.2.1",
"firebase": "^8.7.1",
"formik": "^2.2.9",
"framer-motion": "^4.1.17",
"fuse.js": "^6.4.6",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-cookie-consent": "^6.4.1",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-gtm-module": "^2.0.11",
"react-icons": "^4.2.0",
"react-is": "^17.0.2",
"react-redux": "^7.2.4",
"react-responsive": "^9.0.0-beta.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.4",
"react-share": "^4.4.0",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"seamless-scroll-polyfill": "^2.1.4",
"styled-components": "^5.3.0",
"swr": "^1.0.1",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"babel-plugin-styled-components": "^1.13.2",
"dom-testing-library": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"msw": "^0.34.0",
"react-test-renderer": "^17.0.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!<rootDir>/src/App.js",
"!<rootDir>/src/helpers/routes.js",
"!<rootDir>/src/index.js",
"!<rootDir>/src/mocks/*.js",
"!<rootDir>/src/utils/index.js",
"!<rootDir>/src/pages/index.js",
"!<rootDir>/src/global-styles.js",
"!<rootDir>/src/components/index.js",
"!<rootDir>/src/context/*.js",
"!<rootDir>/src/fixtures/*.js"
]
},
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"html",
"text"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}
}