-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.43 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
{
"name": "gatsby-universal",
"license": "MIT",
"author": "Fabian Schultz <[email protected]>",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "yarn run build && yarn run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdir -p public/icons/",
"build:favicons": "node scripts/favicons",
"build": "yarn run build:dir && yarn run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose",
"write-good": "write-good $(glob 'content/**/*.md')"
},
"dependencies": {
"@reach/dialog": "^0.1.2",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.1.1",
"babel-plugin-styled-components": "^1.8.0",
"gatsby": "^2.0.52",
"gatsby-image": "^2.0.20",
"gatsby-plugin-catch-links": "^2.0.8",
"gatsby-plugin-netlify-cache": "^1.0.0",
"gatsby-plugin-offline": "^2.0.15",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.12",
"gatsby-plugin-sitemap": "^2.0.2",
"gatsby-plugin-styled-components": "^3.0.3",
"gatsby-plugin-typescript": "^2.0.1",
"gatsby-plugin-webpack-size": "^0.0.3",
"gatsby-react-router-scroll": "^2.0.1",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-json": "^2.1.5",
"gatsby-transformer-remark": "^2.1.12",
"gatsby-transformer-sharp": "^2.1.8",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"styled-components": "^4.1.1",
"write-good": "^0.13.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"chrome-launcher": "^0.10.5",
"directory-named-webpack-plugin": "4.0.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-prettier": "^3.0.0",
"favicons": "^5.2.0",
"gatsby-plugin-eslint": "^2.0.1",
"lighthouse": "^4.0.0-alpha.2-3.2.1",
"node-gyp": "^3.8.0",
"prettier": "^1.15.2",
"prettier-eslint": "^8.8.2",
"why-did-you-update": "1.0.6"
},
"engines": {
"node": "^9.10.0",
"yarn": "^1.12.0"
}
}