-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
{
"name": "vaccine_management",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.4.3",
"@material-ui/core": "^4.12.3",
"@mui/material": "^5.2.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "^13.5.0",
"autoprefixer": "9",
"axios": "^0.24.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"express": "^4.17.2",
"express-favicon": "^2.0.1",
"font-awesome": "^4.7.0",
"formik": "^2.2.9",
"identity-obj-proxy": "^3.0.0",
"notistack": "^2.0.3",
"path": "^0.12.7",
"postcss": "7",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-file-base64": "^1.0.3",
"react-loader-spinner": "^4.0.0",
"react-modal": "^3.14.4",
"react-responsive-modal": "^6.4.1",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-test-renderer": "17.0.2",
"react-toast-notifications": "^2.5.1",
"sass": "^1.57.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "jest test"
},
"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": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|less)$": "<rootDir>/mocks/fileMock.js"
}
}
}