-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "gatsby-universal",
"license": "MIT",
"author": "Fabian Schultz <[email protected]>",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && npm run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose"
},
"greenkeeper": {
"ignore": [
"ava",
"core-js"
]
},
"dependencies": {
"@reach/dialog": "^0.2.0",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.1.1",
"babel-plugin-styled-components": "^1.10.0",
"gatsby": "^2.3.26",
"gatsby-image": "^2.0.39",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-plugin-sitemap": "^2.0.12",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-plugin-webpack-size": "^0.0.3",
"gatsby-source-filesystem": "^2.0.30",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-remark": "^2.3.9",
"gatsby-transformer-sharp": "^2.1.18",
"intersection-observer": "^0.5.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-pose": "^4.0.5",
"styled-components": "^4.1.3"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"chrome-launcher": "^0.10.5",
"core-js": "^2.6.2",
"directory-named-webpack-plugin": "^4.0.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"favicons": "^5.3.0",
"gatsby-plugin-eslint": "^2.0.3",
"lighthouse": "^4.0.0",
"mkdirp": "^0.5.1",
"node-gyp": "^3.8.0",
"prettier": "^1.16.0"
}
}