-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.99 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
{
"name": "gatsby-example-image-gallery",
"private": true,
"description": "Gatsby example site: image gallery",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"core-js": "^2.5.5",
"cowsay-browser": "^1.1.8",
"gatsby": "^2.0.0",
"gatsby-image": "^2.0.5",
"gatsby-plugin-glamor": "^2.0.5",
"gatsby-plugin-google-analytics": "^2.0.5",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.32",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-json": "^2.1.1",
"gatsby-transformer-sharp": "^2.1.1",
"glamor": "^2.20.40",
"instagram-screen-scrape": "^2.0.0",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"mousetrap": "^1.6.0",
"progress": "^2.0.0",
"prop-types": "^15.5.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-gravatar": "^2.6.1",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-modal": "^3.4.2",
"react-typography": "^0.16.13",
"request": "^2.79.0",
"slug": "^0.9.1",
"typeface-space-mono": "0.0.54",
"typography": "^0.16.6"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "CYPRESS_SUPPORT=y start-server-and-test develop http://localhost:8000 cy:run",
"develop": "gatsby develop",
"dev": "gatsby develop",
"build": "gatsby build",
"start": "npm run develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome"
},
"devDependencies": {
"cypress": "^3.1.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.0.6",
"start-server-and-test": "^1.1.4"
}
}