forked from Devographics/StateOfJS-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.8 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
{
"name": "state-of-js",
"description": "State of js survey report",
"version": "1.0.0",
"contributors": [
{
"name": "Sacha Greif"
},
{
"name": "Michael Rambeau"
},
{
"name": "Raphaël Benitte"
}
],
"engineStrict": true,
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"@nivo/bar": "0.33.0",
"@nivo/chord": "0.33.0",
"@nivo/circle-packing": "0.33.0",
"@nivo/core": "0.33.0",
"@nivo/pie": "0.33.0",
"bowser": "^2.0.0-beta.1",
"classnames": "^2.2.5",
"d3-format": "^1.2.0",
"d3-scale": "^1.0.7",
"fs-extra": "^4.0.2",
"gatsby": "1.9.277",
"gatsby-link": "^1.6.46",
"gatsby-plugin-google-analytics": "^1.0.12",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-sass": "^1.0.26",
"gatsby-source-filesystem": "^1.0.0-beta.6",
"html-loader": "^0.5.1",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"markdown-loader": "^2.0.1",
"node-fetch": "^2.2.0",
"numeral": "^2.0.6",
"object-assign": "^4.1.0",
"path-dirname": "^1.0.2",
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-document-title": "^2.0.1",
"react-dom": "16.2.0",
"react-feather": "^1.0.7",
"react-ga": "^2.2.0",
"react-helmet": "^5.1.3",
"react-markdown": "^3.1.0",
"reactdown": "^1.0.0-alpha14",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@ekino/config": "^0.3.0",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"dotenv": "^4.0.0",
"elasticsearch": "^14.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"gh-pages": "^0.11.0",
"ora": "^1.3.0",
"prettier": "^1.14.2",
"progress": "^2.0.0",
"puppeteer": "^0.13.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public",
"develop": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"fmt": "prettier --print-width=100 --tab-width=4 --bracket-spacing --no-semi --trailing-comma es5 --single-quote --color --write \"{src,cli,.storybook,stories,loaders}/**/*.js\" gatsby-*.js",
"fmt:check": "prettier --print-width=100 --tab-width=4 --bracket-spacing --no-semi --trailing-comma es5 --single-quote --list-different \"{src,cli,.storybook,stories,loaders}/**/*.js\" gatsby-*.js",
"typeform": "node --experimental-modules ./typeform/create.mjs"
}
}