-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.2",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"add:cname": "echo 'vradov.space' > public/CNAME",
"deploy:gh": "npm run build && npm run add:cname && node ./scripts/deploy-github",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"dependencies": {
"aphrodite": "^2.3.0",
"gatsby": "^2.0.118",
"gatsby-plugin-aphrodite": "^2.0.5",
"gatsby-plugin-catch-links": "^2.0.13",
"gatsby-plugin-manifest": "^2.0.18",
"gatsby-plugin-offline": "^2.0.24",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-remark-images": "^3.0.10",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-remark": "^2.2.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sharp": "^0.25.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"redux-devtools-extension": "^2.13.8"
}
}