-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 KB
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
{
"name": "technical-journal",
"description": "A place to keep notes on all those Yaks I have to shave",
"version": "1.0.0",
"author": "Jeff Kwak<jeff.kwak@gmail.com>",
"private": true,
"dependencies": {
"gatsby": "^1.9.158",
"gatsby-link": "^1.6.34",
"gatsby-plugin-catch-links": "^1.0.15",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-feed-generator": "^1.0.5",
"gatsby-plugin-react-helmet": "^2.0.4",
"gatsby-plugin-typography": "^1.7.14",
"gatsby-remark-prismjs": "^1.2.15",
"gatsby-source-filesystem": "^1.5.18",
"gatsby-transformer-remark": "^1.7.31",
"react": "^16.2.0",
"react-helmet": "^5.2.0",
"typography-theme-parnassus": "^0.15.10"
},
"keywords": [
"gatsby",
"static-site",
"blog",
"technical-journal"
],
"license": "CC BY 4.0",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"new-post": "node ./scripts/new-post.js"
},
"devDependencies": {
"colors": "^1.1.2",
"inquirer": "^5.1.0",
"inquirer-datepicker-prompt": "^0.4.2",
"moment": "^2.20.1",
"prettier": "^1.10.2"
}
}