forked from Devographics/StateOfJS-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.5 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
{
"name": "state-of-js-2019",
"description": "State of JS 2019 survey report",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/StateOfJS/state-of-js-2019"
},
"contributors": [
{
"name": "Sacha Greif"
},
{
"name": "Raphaël Benitte"
}
],
"engineStrict": true,
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@nivo/bar": "0.61.1",
"@nivo/bump": "0.61.1",
"@nivo/circle-packing": "0.61.0",
"@nivo/core": "0.61.0",
"@nivo/geo": "0.61.1",
"@nivo/line": "0.61.1",
"@nivo/pie": "0.61.1",
"@nivo/sankey": "0.61.2",
"@nivo/scatterplot": "0.61.1",
"@nivo/stream": "0.61.1",
"@nivo/sunburst": "0.61.0",
"@nivo/treemap": "0.61.0",
"@nivo/waffle": "0.61.1",
"babel-plugin-styled-components": "^1.10.6",
"bowser": "2.1.0",
"classnames": "^2.2.6",
"d3-array": "^2.4.0",
"d3-format": "^1.3.2",
"d3-scale": "^2.2.2",
"dotenv": "^8.2.0",
"gatsby": "^2.18.13",
"gatsby-cli": "^2.8.19",
"gatsby-plugin-google-analytics": "^2.1.26",
"gatsby-plugin-netlify": "^2.1.24",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-sass": "^2.1.26",
"gatsby-plugin-styled-components": "^3.1.16",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-source-filesystem": "^2.1.36",
"gatsby-source-graphql": "^2.1.25",
"gatsby-transformer-remark": "^2.6.34",
"gatsby-transformer-yaml": "^2.2.16",
"html-loader": "^0.5.5",
"js-yaml": "^3.12.1",
"json2csv": "^4.5.4",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-loader": "^4.0.0",
"node-fetch": "^2.5.0",
"node-sass": "^4.12.0",
"object-assign": "^4.1.1",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-confetti": "^3.1.0",
"react-dom": "npm:@hot-loader/react-dom",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.0",
"react-markdown": "^4.0.8",
"react-modal": "^3.11.1",
"react-tabs": "^3.0.0",
"remove-markdown": "^0.3.0",
"styled-components": "^4.4.1",
"tinycolor2": "^1.4.1",
"topojson-client": "^3.0.0"
},
"devDependencies": {
"eslint-config-prettier": "^4.1.0",
"prettier": "^1.17.0"
},
"private": true,
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public",
"dev": "gatsby develop",
"dev:clean": "rm -rf .cache && yarn run dev",
"fmt": "prettier --write \"src/**/*.{js,jsx}\" \"node_src/**/*.{js}\" \"config/**/*.{yaml,yml}\""
}
}