-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.22 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
{
"name": "decarb-my-state",
"private": true,
"description": "A site showing emissions statistics and decarbonization actions state by state",
"version": "0.1.0",
"author": "DataMade",
"engines": {"node" : ">=15"},
"dependencies": {
"@sentry/gatsby": "^5.27.3",
"bootstrap": "^4.4.1",
"eslint-config-react-app": "^5.2.1",
"fs": "^0.0.1-security",
"gatsby": "^2.19.45",
"gatsby-image": "^2.2.44",
"gatsby-plugin-google-gtag": "^4.14.0",
"gatsby-plugin-manifest": "^2.2.48",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-offline": "^3.0.41",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-sharp": "^2.4.13",
"gatsby-source-filesystem": "^2.1.56",
"gatsby-transformer-json": "^2.5.0",
"gatsby-transformer-sharp": "^2.3.19",
"journalize": "^2.5.0",
"prop-types": "^15.7.2",
"puppeteer": "^16.0.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-bootstrap-table2-toolkit": "^2.1.3",
"react-bootstrap-typeahead": "^5.1.4",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.11.0",
"react-scrollspy": "^3.4.3",
"react-select": "^3.1.0",
"react-svg-map": "^2.2.0",
"recharts": "^2.1.9",
"typescript": "^3.9.5",
"url-search-params-polyfill": "^8.1.0"
},
"devDependencies": {
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop -H 0.0.0.0 -p 8000",
"format": "eslint src --fix && prettier --config ./.prettierrc.js --write \"src/**/*.{js,jsx,json,md,css}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "eslint src && prettier --check \"src/**/*.{js,jsx,json,md,css}\"",
"generate-social-all": "node src/generate-social-cards.js",
"generate-social-states": "node src/generate-social-cards.js --states",
"generate-social-power-plants": "node src/generate-social-cards.js --power-plants"
},
"repository": {
"type": "git",
"url": "https://github.com/datamade/how-to"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}