-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "open-banking-reference-application",
"version": "0.1.0",
"private": true,
"proxy": "https://api.finicity.com",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@finicity/connect-web-sdk": "^1.0.0-rc.4",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/x-date-pickers": "^7.6.2",
"@reduxjs/toolkit": "^2.2.6",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.70",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"eventemitter3": "^5.0.1",
"formik": "^2.1.3",
"lodash": "^4.17.21",
"material-react-table": "^2.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-json-view": "^1.21.3",
"react-redux": "^9.1.2",
"react-scripts": "5.0.1",
"tailwindcss": "3.3.3",
"typescript": "^5.4.5",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"overrides": {
"react-scripts": {
"typescript": "^5"
},
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"devDependencies": {
"@types/lodash": "^4.14.198",
"@types/testing-library__react": "^10.2.0",
"prettier": "3.0.3",
"tailwindcss": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "react-scripts test --env=jsdom --watchAll=false --coverage",
"eject": "react-scripts eject",
"lint": "eslint --fix --ext .ts,.tsx ./src",
"prettier": "npx prettier --write ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"src/App.tsx",
"src/index.tsx"
]
}
}