-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "gatsby-starter-blorg",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby and org-mode",
"version": "1.0.0",
"author": "Xiaoxing Hu <[email protected]>",
"dependencies": {
"gatsby": "^3.2.1",
"gatsby-theme-blorg": "^2.3.16",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"prettier": "^2.2.1"
},
"keywords": [
"gatsby",
"blog",
"org-mode",
"orga"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"predevelop": "rm -rf .cache",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
"url": "https://github.com/orgapp/gatsby-starter-blorg"
},
"bugs": {
"url": "https://github.com/orgapp/gatsby-starter-blorg/issues"
}
}