forked from ChurchApps/B1Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.06 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.06 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "b1admin",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@churchapps/apphelper": "^0.6.0",
"@churchapps/apphelper-donations": "^0.6.0",
"@churchapps/apphelper-forms": "^0.6.0",
"@churchapps/apphelper-login": "^0.6.0",
"@churchapps/apphelper-markdown": "^0.6.0",
"@churchapps/apphelper-website": "^0.6.1",
"@churchapps/helpers": "^1.2.4",
"@mui/icons-material": "^7.1.2",
"@mui/material": "^7.1.2",
"@react-google-maps/api": "^2.20.0",
"@react-hook/window-size": "^3.1.1",
"@sentry/react": "^10.27.0",
"@stripe/react-stripe-js": "^3.8.0",
"@stripe/stripe-js": "^7.6.1",
"@tanstack/react-query": "^5.83.0",
"@types/react-color": "^3.0.13",
"axios": "^1.7.7",
"cropperjs": "^1.6.2",
"jszip": "^3.10.1",
"moment": "^2.30.1",
"mui-tel-input": "^9.0.1",
"react": "^19.1.0",
"react-big-calendar": "^1.19.4",
"react-color": "^2.19.3",
"react-cookie": "^8.0.1",
"react-cropper": "^2.3.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.1.0",
"react-image-file-resizer": "^0.4.8",
"react-router-dom": "^7.6.2",
"react-select": "^5.8.1",
"react-select-material-ui": "^9.3.1",
"react-to-print": "^3.1.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@playwright/test": "^1.53.1",
"@tanstack/react-query-devtools": "^5.83.0",
"@types/react": "^19.1.8",
"@types/react-big-calendar": "^1.16.3",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^19.1.6",
"@types/slug": "^5.0.9",
"@vitejs/plugin-react": "^4.6.0",
"@vitejs/plugin-react-swc": "^3.10.2",
"copyfiles": "^2.4.1",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"lint-staged": "^16.1.2",
"playwright": "^1.53.1",
"prettier": "^3.6.2",
"sourcemap-codec": "^1.4.8",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vite": "^6.3.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"lint:only": "eslint --ext ts,tsx,js",
"lint": "npm run lint:only -- --fix",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"format": "npm run prettier && npm run lint:fix",
"predeploy-demo": "export REACT_APP_STAGE=demo && npm run postinstall && npm run build",
"exec-deploy-demo": "aws s3 sync dist/ s3://demo-chums-app",
"postdeploy-demo": "aws cloudfront create-invalidation --distribution-id E2OZ4STEUZXHZZ --paths \"/*\"",
"deploy-demo": "npm run predeploy-demo && npm run exec-deploy-demo && npm run postdeploy-demo",
"predeploy-staging": "export REACT_APP_STAGE=staging && npm run postinstall && npm run build",
"exec-deploy-staging": "aws s3 sync dist/ s3://staging-chums-app",
"postdeploy-staging": "aws cloudfront create-invalidation --distribution-id E2OZ4STEUZXHZZ --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 dist/ s3://chums-app",
"postdeploy-prod": "aws cloudfront create-invalidation --distribution-id E2OZ4STEUZXHZZ --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 && copyfiles -a -f node_modules/@churchapps/apphelper/public/css/** public/apphelper/css"
},
"lint-staged": {
"src/**/*.{ts,tsx,js}": [
"npm run lint:fix"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}