-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "the-plain-gatsby-starter",
"private": true,
"description": "A simple minimalist starter for your personal blog",
"version": "0.2.0",
"author": "Kinyanjui Wangonya <[email protected]>",
"dependencies": {
"gatsby": "^3.1.0",
"gatsby-plugin-feed": "^3.1.0",
"gatsby-plugin-image": "^1.1.0",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sass": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.0",
"gatsby-remark-images": "^4.1.0",
"gatsby-remark-prismjs": "^4.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"node-sass": "^5.0.0",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"prettier": "^2.2.1"
},
"keywords": [
"gatsby",
"minimal",
"minimalist"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/wangonya/the-plain-gatsby"
},
"bugs": {
"url": "https://github.com/wangonya/the-plain-gatsby/issues"
}
}