-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.94 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@stackref/primary-frontend",
"author": "Keith McDuffee <[email protected]>",
"version": "1.6.9",
"private": true,
"homepage": "/",
"type": "module",
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"start": "vite",
"dev": "vite",
"sbom": "npm sbom --sbom-format cyclonedx > sbom.json",
"build": "vite build --mode ${npm_config_env:-production}",
"preview": "vite preview --port 9003",
"compress": "for i in $(find build/ -type f); do brotli -c $i > $i; done",
"clear": "aws --profile=acme s3 rm s3://${npm_config_env}.acme.example.com/ --recursive --quiet",
"copy": "aws --profile=acme s3 cp build/ s3://${npm_config_env}.acme.example.com --only-show-errors --recursive",
"invalidate": "aws --profile=acme cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths '/*' --no-cli-pager",
"invalidate:dev": "CF_DIST_ID='CLOUDFRONT_DIST_ID_HERE ' npm run invalidate",
"invalidate:beta": "CF_DIST_ID='CLOUDFRONT_DIST_ID_HERE' npm run invalidate",
"invalidate:app": "CF_DIST_ID='CLOUDFRONT_DIST_ID_HERE' npm run invalidate",
"deploy": "if ! [[ $npm_config_env =~ ^('dev'|'beta'|'app')$ ]]; then echo '>> NO/INVALID ENV SET. USE \"npm run deploy --env=(dev|beta|app)\". EXITING.'; exit 1; else npm run sbom && npm run build && npm run clear && npm run copy && npm run invalidate:${npm_config_env}; fi",
"test": "vitest run --passWithNoTests"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@fullcalendar/daygrid": "^6.1.14",
"@fullcalendar/list": "^6.1.14",
"@fullcalendar/react": "^6.1.14",
"@fullcalendar/timegrid": "^6.1.14",
"@fullcalendar/timeline": "^6.1.14",
"@lexical/code": "^0.14.3",
"@lexical/link": "^0.14.3",
"@lexical/list": "^0.14.3",
"@lexical/markdown": "^0.14.3",
"@lexical/react": "^0.14.3",
"@lexical/rich-text": "^0.14.3",
"@lexical/selection": "^0.14.3",
"@lexical/table": "^0.14.3",
"@lexical/utils": "^0.14.3",
"@mui/base": "^5.0.0-beta.40",
"@mui/icons-material": "^5.15.21",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.21",
"@mui/utils": "^5.15.20",
"@mui/x-date-pickers-pro": "^7.8.0",
"@mui/x-license-pro": "^6.10.2",
"@reduxjs/toolkit": "^2.2.6",
"@sentry/integrations": "^7.114.0",
"@sentry/react": "^7.110.0",
"add-to-calendar-button-react": "^2.6.18",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.22.0",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"dayjs": "^1.11.11",
"dompurify": "^3.1.5",
"filepond": "^4.31.1",
"filepond-plugin-file-encode": "^2.1.14",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.9",
"filepond-plugin-image-crop": "^2.0.6",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.12",
"filepond-plugin-image-resize": "^2.0.10",
"filepond-plugin-image-transform": "^3.8.7",
"formik": "^2.4.6",
"formik-mui": "^5.0.0-alpha.0",
"i18next": "^23.11.5",
"immer": "^10.1.1",
"jwt-decode": "^4.0.0",
"lexical": "^0.14.3",
"lodash": "^4.17.21",
"material-ui-confirm": "^3.0.16",
"mui-image": "^1.0.7",
"mui-modal-provider": "^2.4.2",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-apexcharts": "^1.4.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-filepond": "^7.1.2",
"react-helmet-async": "^2.0.5",
"react-i18next": "^14.1.2",
"react-material-ui-carousel": "^3.4.2",
"react-perfect-scrollbar": "^1.5.8",
"react-phone-number-input": "^3.4.3",
"react-player": "^2.16.0",
"react-redux": "^9.1.2",
"react-router": "^6.24.0",
"react-router-dom": "^6.24.0",
"react-spotify-embed": "^2.0.4",
"react-toastify": "^10.0.5",
"stylis-plugin-rtl": "^2.1.1",
"use-is-mounted-ref": "^1.5.0",
"web-vitals": "^3.5.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@vitejs/plugin-react": "^4.3.4",
"@welldone-software/why-did-you-render": "^8.0.3",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^25.0.1",
"vite": "^6.0.7",
"vitest": "^4.1.9"
}
}