-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"gatsby": "^2.24.47",
"gatsby-image": "^2.4.16",
"gatsby-plugin-create-client-paths": "^2.3.10",
"gatsby-plugin-manifest": "^2.4.23",
"gatsby-plugin-offline": "^3.2.23",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.27",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-sharp": "^2.5.13",
"prop-types": "^15.7.2",
"react": "^0.0.0-experimental-94c0244ba",
"react-dom": "^0.0.0-experimental-94c0244ba",
"react-helmet": "^6.1.0",
"react-relay": "^0.0.0-experimental-183bdd28",
"relay-runtime": "^10.0.1"
},
"devDependencies": {
"babel-plugin-relay": "^10.0.1",
"babel-preset-gatsby": "^0.5.5",
"graphql": "^15.3.0",
"prettier": "^2.0.5",
"relay-compiler": "^10.0.1",
"relay-config": "^10.0.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "yarn run relay && gatsby build",
"develop": "yarn run relay && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"relay": "relay-compiler"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}