-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "ua-pchd",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.12.5",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.2",
"aws-amplify": "^3.3.18",
"aws-amplify-react": "^4.2.22",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"formik": "^2.2.6",
"i18next": "^19.8.5",
"js-cookie": "^2.2.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-bootstrap": "^1.4.3",
"react-bootstrap-icons": "^1.3.0",
"react-bootstrap-typeahead": "^5.1.4",
"react-datepicker": "^3.4.1",
"react-dom": "^17.0.1",
"react-google-recaptcha": "^2.1.0",
"react-i18next": "^11.8.5",
"react-phone-input-2": "^2.13.9",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"web-vitals": "^0.2.4",
"yup": "^0.32.8"
},
"scripts": {
"start": "REACT_APP_STAGE=dev react-scripts start",
"build": "REACT_APP_STAGE=dev react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy:prod": "REACT_APP_STAGE=prod react-scripts build",
"deploy:prod": "aws s3 sync build/ s3://register.vaccine.pima.gov",
"postdeploy:prod": "aws cloudfront create-invalidation --distribution-id E3MA92BZMTBSUX --paths '/*'",
"predeploy:nonprod": "REACT_APP_STAGE=nonprod react-scripts build",
"deploy:nonprod": "aws s3 sync build/ s3://register-nonprod.vaccine.pima.gov",
"postdeploy:nonprod": "aws cloudfront create-invalidation --distribution-id EGAGN42IZMTN8 --paths '/*'"
},
"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"
]
}
}