-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
84 lines (84 loc) · 3 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
{
"name": "progressive_mass_legislator_scorecard",
"description": "Progressive Massachusetts Legislator Scorecard",
"version": "1.0.0",
"author": "Alex Holachek",
"dependencies": {
"@babel/compat-data": "^7.21.4",
"bootstrap": "^4.5.0",
"gatsby": "^2.24.4",
"gatsby-image": "^2.4.13",
"gatsby-plugin-google-analytics": "^2.3.11",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-offline": "^3.2.18",
"gatsby-plugin-open-graph-images": "^0.1.8",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.19",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-styled-components": "^4.15.0",
"gatsby-source-filesystem": "^2.3.20",
"gatsby-transformer-json": "^2.4.11",
"gatsby-transformer-sharp": "^2.5.11",
"prop-types": "^15.8.1",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-lazyload": "^2.6.9",
"react-responsive-tabs": "^3.3.0",
"react-sticky": "^6.0.3",
"react-sticky-table": "^2.0.5",
"react-tippy": "1.4.0",
"sass": "^1.61.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"axios": "^0.21.2",
"axios-curlirize": "^1.1.0",
"csv": "^5.1.1",
"dotenv": "^7.0.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"express": "^4.18.2",
"firebase-tools": "^8.4.3",
"fs-extra": "^7.0.1",
"normalize-strings": "^1.1.1",
"prettier": "2.8.7",
"string-similarity": "^3.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "yarn run build-data && gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"start": "npm run develop",
"serve": "gatsby serve",
"gatsby:debug": "node --nolazy --inspect-brk node_modules/gatsby/dist/bin/gatsby develop",
"build-data": "node --unhandled-rejections=warn processData/downloadAndBuildData/index.js",
"serve:functions": "firebase serve",
"download-social-images:dev": "node test/downloadSocialImages.js",
"download-social-images:staging": "STAGING=true node test/downloadSocialImages.js",
"download-social-images:prod": "PRODUCTION=true node test/downloadSocialImages.js",
"deploy:functions:prod": "firebase deploy --only functions -P prod",
"deploy:prod": "yarn run build && firebase deploy --only hosting -P prod",
"deploy:staging": "STAGING=true yarn run build && firebase deploy --only hosting -P staging"
},
"repository": {
"type": "git",
"url": "https://github.com/ProgressiveMass/legislator-scorecard"
},
"bugs": {
"url": "https://github.com/ProgressiveMass/legislator-scorecard/issues"
}
}