-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
216 lines (216 loc) · 9.16 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
{
"name": "covid-act-now-website",
"version": "0.1.0",
"private": true,
"dependencies": {
"@24hr/react-structured-data": "^1.0.0",
"@actnowcoalition/assert": "^1.0.0",
"@actnowcoalition/number-format": "^1.0.0",
"@actnowcoalition/time-utils": "^1.0.0",
"@iconify/icons-twemoji": "^1.0.11",
"@iconify/react": "^1.1.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.55",
"@mui/x-data-grid": "^4.0.0",
"@sentry/react": "^5.24.2",
"@typeform/embed": "^0.25.3",
"@types/d3-array": "^2.0.0",
"@types/d3-color": "^1.2.2",
"@types/d3-scale-chromatic": "^1.5.0",
"@types/d3-shape": "^1.3.2",
"@types/d3-time": "^1.0.10",
"@types/jest": "^26.0.16",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-router-hash-link": "^1.2.1",
"@types/react-scrollspy": "^3.3.3",
"@types/sharp": "^0.29.4",
"@types/topojson-client": "^3.0.0",
"@types/typeform__embed": "^0.22.2",
"@types/uuid": "^8.3.0",
"@vx/axis": "^0.0.196",
"@vx/clip-path": "^0.0.196",
"@vx/curve": "^0.0.196",
"@vx/event": "^0.0.196",
"@vx/grid": "^0.0.196",
"@vx/group": "^0.0.196",
"@vx/responsive": "^0.0.196",
"@vx/scale": "^0.0.196",
"@vx/shape": "^0.0.196",
"@vx/tooltip": "^0.0.196",
"@vx/voronoi": "^0.0.196",
"amplitude-js": "^7.4.3",
"aws-sdk": "^2.758.0",
"bottleneck": "^2.19.5",
"csv-parse": "^4.8.8",
"d3-array": "^2.4.0",
"d3-color": "^2.0.0",
"d3-scale-chromatic": "^2.0.0",
"d3-time": "^1.1.0",
"esm": "^3.2.25",
"firebase": "^7.15.4",
"geo-albers-usa-territories": "^0.0.2",
"googleapis": "^57.0.0",
"handlebars": "^4.7.6",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"match-sorter": "6.3.1",
"moment": "^2.29.2",
"postinstall-postinstall": "^2.1.0",
"query-string": "^6.11.1",
"react": "^16.13.0",
"react-copy-to-clipboard": "^5.0.2",
"react-countdown": "^2.3.1",
"react-dom": "^16.13.0",
"react-ga": "^3.1.2",
"react-helmet": "^5.2.1",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^4.3.1",
"react-optimize": "^2.4.0",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^2.2.2",
"react-scripts": "3.4.0",
"react-scrollspy": "^3.4.3",
"react-select": "^3.1.0",
"react-share": "^4.1.0",
"react-simple-maps": "^1.0.0-beta.0",
"react-singleton-hook": "^3.0.142",
"react-tooltip": "^4.1.2",
"react-twitter-embed": "^3.0.3",
"sharp": "^0.30.5",
"sitemap": "^6.3.3",
"source-map-explorer": "^2.5.1",
"styled-components": "^5.0.1",
"topojson-client": "^3.1.0",
"uuid": "^8.3.0",
"web-vitals": "^1.1.0",
"yargs": "^16.2.0"
},
"scripts": {
"start": "cross-env TSC_COMPILE_ON_ERROR=false react-scripts start",
"build": "react-scripts build",
"build-with-index-pages": "yarn build && yarn generate-index-pages && yarn generate-sitemap",
"build:staging": "cross-env REACT_APP_ENVIRONMENT=staging yarn build-with-index-pages",
"build:prod": "cross-env REACT_APP_ENVIRONMENT=prod yarn build-with-index-pages",
"serve": "react-scripts build && serve -s build",
"eject": "react-scripts eject",
"jest": "cross-env TZ=America/Los_Angeles react-scripts test",
"jest.ci": "CI=true yarn jest",
"lint": "eslint --ext .js,.ts,tsx src --max-warnings=0",
"lint-fix": "eslint --ext .js,.ts,tsx --fix src",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"prettier": "prettier --check '**/*.{css,scss,js,ts,tsx}'",
"prettier-fix": "prettier --write '**/*.{css,scss,js,ts,tsx}'",
"update-api-types": "ts-node-script scripts/update_api_types.ts",
"update-location-summaries": "ts-node-script -r tsconfig-paths/register scripts/update_location_summaries.ts",
"update-data-coverage-summary": "ts-node-script -r tsconfig-paths/register scripts/update_data_coverage_summary.ts",
"create-lists-to-email": "ts-node-script -r tsconfig-paths/register scripts/alert_emails/create_lists_to_email.ts",
"generate-index-pages": "ts-node-script -r tsconfig-paths/register scripts/generate_index_pages.ts",
"generate-daily-alerts": "ts-node-script -r tsconfig-paths/register scripts/alert_emails/generate_daily_alerts.ts",
"send-emails": "ts-node-script -r tsconfig-paths/register scripts/alert_emails/send_emails.ts",
"send-test-email": "ts-node-script -r tsconfig-paths/register scripts/alert_emails/send-test-email.ts",
"report-alert-emails": "ts-node-script -r tsconfig-paths/register scripts/alert_emails_report/generate-report.ts",
"generate-subscriber-emails-file": "ts-node-script -r tsconfig-paths/register scripts/alert_emails_report/generate-subscriber-emails-file.ts",
"generate-county-history-data": "ts-node-script -r tsconfig-paths/register scripts/county_history_data/generate.ts",
"generate-metro-areas": "ts-node-script -r tsconfig-paths/register scripts/cbsa/parse-metro-areas.ts",
"generate-sitemap": "ts-node-script -r tsconfig-paths/register scripts/generate_sitemap/index.ts",
"optimize-images": "ts-node-script -r tsconfig-paths/register scripts/optimize_images/optimize-images.ts",
"covid-explained-internal-links": "ts-node-script -r tsconfig-paths/register scripts/covid-explained/report-internal-links.ts",
"covid-explained-images": "ts-node-script -r tsconfig-paths/register scripts/covid-explained/report-images.ts",
"covid-explained-migrate": "ts-node-script -r tsconfig-paths/register scripts/covid-explained/migrate-articles.ts",
"vaccinations-generate-alerts": "ts-node-script -r tsconfig-paths/register scripts/vaccination_alerts/generate-vaccine-alerts-info.ts",
"vaccinations-generate-users-to-email": "ts-node-script -r tsconfig-paths/register scripts/vaccination_alerts/generate-users-to-email.ts",
"vaccinations-send-alert-emails": "ts-node-script -r tsconfig-paths/register scripts/vaccination_alerts/send-emails.ts",
"vaccinations-send-test-email": "ts-node-script -r tsconfig-paths/register scripts/vaccination_alerts/send-test-email.ts",
"vaccinations-parse-phases": "ts-node-script -r tsconfig-paths/register scripts/vaccination_alerts/parse-vaccination-phases.ts",
"prepare-regions-data": "ts-node-script -r tsconfig-paths/register scripts/prepare_regions_data/prepare-regions-data.ts",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"analyze": "cross-env REACT_APP_ENVIRONMENT=prod yarn build && source-map-explorer build/static/js/*.js",
"generate-ccvi": "ts-node-script -r tsconfig-paths/register scripts/ccvi/parse_ccvi.ts",
"generate-surgo-percent-population-vulnerable": "ts-node-script -r tsconfig-paths/register scripts/ccvi/parse_surgo_percent_population_vulnerable.ts",
"chromatic": "npx chromatic --project-token CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes"
},
"lint-staged": {
"{src,scripts,firebase/functions/src,}/**/*.{css,scss,js,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@storybook/addon-a11y": "^6.1.21",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/node-logger": "^6.1.21",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^4.2.4",
"@types/amplitude-js": "^7.0.1",
"@types/d3-fetch": "^1.1.5",
"@types/d3-scale": "^2.2.0",
"@types/fs-extra": "^8.1.0",
"@types/gtag.js": "^0.0.10",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.149",
"@types/luxon": "^1.26.1",
"@types/node": "^13.11.0",
"@types/node-fetch": "^2.5.7",
"@types/os-utils": "^0.0.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@types/react-router": "^5.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-simple-maps": "^1.0.1",
"@types/react-tooltip": "^3.11.0",
"@types/styled-components": "^5.0.1",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-loader": "8.0.6",
"chromatic": "^5.9.2",
"cross-env": "^7.0.2",
"delay": "^4.3.0",
"dnscache": "^1.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "3.1.2",
"firebase-admin": "^9.5.0",
"husky": "^4.2.5",
"json-schema-to-typescript": "^8.2.0",
"lint-staged": "^10.1.3",
"node-fetch": "^2.6.7",
"prettier": "2.0.2",
"react-is": "^17.0.1",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"serve": "^11.3.0",
"ts-node": "^8.9.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3",
"unist-util-is": "^4.0.4",
"unist-util-visit": "^2.0.3",
"url-join": "^4.0.1"
}
}