-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "mass-covid-cases-by-town",
"private": false,
"description": "An app for visualizing Massachusetts COVID cases by town",
"version": "0.1.0",
"author": "Ryan Bagwell <ryan@ryanbagwell.com>",
"dependencies": {
"@loadable/component": "^5.15.0",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"apexcharts": "3.27.3",
"axios": "0.24.0",
"date-fns": "2.22.1",
"fontsource-roboto": "2.1.4",
"gatsby": "2.27.2",
"gatsby-image": "2.4.9",
"gatsby-plugin-force-trailing-slashes": "^1.0.5",
"gatsby-plugin-google-analytics": "2.3.11",
"gatsby-plugin-manifest": "2.4.14",
"gatsby-plugin-material-ui": "2.1.9",
"gatsby-plugin-offline": "3.2.13",
"gatsby-plugin-react-helmet": "3.3.6",
"gatsby-plugin-sharp": "2.6.14",
"gatsby-plugin-sitemap": "^4.3.1",
"gatsby-source-filesystem": "2.3.14",
"gatsby-transformer-csv": "2.3.10",
"gatsby-transformer-excel": "^3.5.0",
"gatsby-transformer-sharp": "2.5.7",
"graphql": "14.6.0",
"memoize-one": "^5.2.1",
"mobx": "5.15.4",
"mobx-react": "6.2.2",
"moment": "2.27.0",
"moving-averages": "4.0.5",
"prop-types": "15.7.2",
"random-color": "^1.0.1",
"react": "16.12.0",
"react-apexcharts": "1.3.9",
"react-dom": "16.12.0",
"react-helmet": "6.1.0",
"s3-folder-upload": "^2.3.5",
"slugify": "^1.5.3",
"socket.io": "2.4.1"
},
"devDependencies": {
"prettier": "2.0.5"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "aws s3 sync ./public s3://$S3_BUCKET_NAME/",
"invalidate-cloudfront": "aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_DISTRIBUTION_ID --paths \"/*\""
},
"repository": {
"type": "git",
"url": "https://github.com/ryanbagwell/mass-covid-cases-by-town/"
},
"bugs": {
"url": "https://github.com/ryanbagwell/mass-covid-cases-by-town/issues"
}
}