-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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": "hukdzen",
"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",
"test:coverage": "CI=true npm test -- --env=jsdom --coverage",
"test:winCoverage": "set CI=true&& npm test -- --env=jsdom --coverage",
"eject": "react-scripts eject"
},
"dependencies": {
"@aws-amplify/core": "^6.0.28",
"@aws-amplify/ui-react": "^6.0.7",
"@aws-amplify/ui-react-storage": "^3.0.18",
"@cyntler/react-doc-viewer": "^1.14.1",
"@date-io/date-fns": "^2.16.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.11",
"@mui/x-data-grid": "^5.17.6",
"@mui/x-date-pickers": "^5.0.4",
"@reduxjs/toolkit": "^2.2.3",
"@types/node": "^17.0.45",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"aws-amplify": "^6.0.30",
"date-fns": "^2.29.3",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.4.1",
"react-scripts": "5.0.1",
"redux-saga": "^1.2.1",
"tss-react": "^4.3.2",
"typescript": "^4.8.4",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.2",
"@types/jest-when": "^3.5.2",
"@types/mime-types": "^2.1.1",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^8.3.4",
"css-mediaquery": "^0.1.2",
"jest-when": "^3.5.2",
"jsdom-worker": "^0.3.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.13",
"source-map-explorer": "^2.5.3",
"uuid": "^9.0.0",
"window-resizeto": "^0.0.2"
},
"eslintConfig": { "extends": [ "react-app", "react-app/jest" ] },
"browserslist": [
"> 0.2%", "not dead",
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
],
"jest": {
"transformIgnorePatterns": [ "node_modules/(?!(axios|date-fns|react-pdf)/)" ],
"coveragePathIgnorePatterns": [
"node_modules",
"<rootDir>/src/types/AmplifyTypes.ts",
"<rootDir>/src/graphql/",
"<rootDir>/src/__utils__/",
"<rootDir>/src/index.ts",
"<rootDir>/src/reportWebVitals.ts",
"<rootDir>/src/aws-exports.js"
]
}
}