-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 2.06 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
{
"name": "chums",
"version": "0.1.0",
"private": true,
"dependencies": {
"@churchapps/apphelper": "0.2.89",
"@mui/icons-material": "^5.14.7",
"@mui/material": "^5.14.7",
"@types/react-cropper": "^1.3.2",
"@types/react-router-dom": "^5.3.3",
"mui-tel-input": "^5.1.2",
"react": "^18.2.0",
"react-cookie": "^6.1.0",
"react-cropper": "^2.3.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"react-scripts": "^5.0.1",
"react-select": "^5.8.0",
"react-select-material-ui": "^9.3.1",
"react-to-print": "^2.14.13"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.7",
"@types/slug": "^5.0.9",
"copyfiles": "^2.4.1",
"lint-staged": "^14.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:only": "eslint --ext ts,tsx,js",
"lint:fix": "npm run lint:only -- --fix",
"predeploy-staging": "export REACT_APP_STAGE=staging && npm run postinstall && npm run build",
"exec-deploy-staging": "aws s3 sync build/ s3://staging-chums-app",
"postdeploy-staging": "aws cloudfront create-invalidation --distribution-id E2SBDXIK2UVHM9 --paths \"/*\"",
"deploy-staging": "npm run predeploy-staging && npm run exec-deploy-staging && npm run postdeploy-staging",
"predeploy-prod": "export REACT_APP_STAGE=prod && npm run postinstall && npm run build",
"exec-deploy-prod": "aws s3 sync build/ s3://chums-app",
"postdeploy-prod": "aws cloudfront create-invalidation --distribution-id E3FB2K4FSP7ZUB --paths \"/*\"",
"deploy-prod": "npm run predeploy-prod && npm run exec-deploy-prod && npm run postdeploy-prod",
"postinstall": "copyfiles -a -f node_modules/@churchapps/apphelper/public/locales/** public/apphelper/locales"
},
"lint-staged": {
"src/**/*.{ts,tsx,js}": [
"npm run lint:fix"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}