forked from fabe/gatsby-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdir -p public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && npm run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose"
},
"dependencies": {
"@reach/router": "^1.1.1",
"babel-plugin-styled-components": "1.5.1",
"gatsby": "^2.0.0-beta.38",
"gatsby-image": "^2.0.0-beta.4",
"gatsby-plugin-offline": "^2.0.0-beta.3",
"gatsby-plugin-react-helmet": "3.0.0-beta.2",
"gatsby-plugin-sharp": "^2.0.0-beta.2",
"gatsby-plugin-sitemap": "^2.0.0-beta.2",
"gatsby-source-filesystem": "^2.0.1-beta.3",
"gatsby-transformer-json": "^2.1.1-beta.2",
"gatsby-transformer-sharp": "^2.1.1-beta.3",
"intersection-observer": "^0.5.0",
"prop-types": "15.6.2",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-helmet": "^5.2.0",
"react-router-dom": "4.3.1",
"react-transition-group": "2.3.1",
"styled-components": "3.3.3",
"to-style": "1.3.3"
},
"devDependencies": {
"ava": "^1.0.0-beta.6",
"chrome-launcher": "^0.10.2",
"directory-named-webpack-plugin": "4.0.0",
"favicons": "^5.1.1",
"lighthouse": "^3.0.3",
"node-gyp": "^3.7.0",
"prettier": "^1.13.5",
"why-did-you-update": "0.1.1"
},
"browserslist": [
"> 0.05%",
"not dead",
"not ie 11",
"not android 4.1",
"not android 4.2",
"not android 4.4",
"not android 4.4.3",
"not chrome 29",
"not chrome 43",
"not chrome 49",
"not chrome 54",
"not firefox 47",
"not firefox 48",
"not firefox 51",
"not firefox 52",
"not ios 8.1",
"not ios 9.3",
"not safari 5.1",
"not safari 9.1"
]
}