-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "gatsby-typescript-blog-starter",
"description": "Gatsby blog starter",
"version": "1.0.0",
"author": "Xin Nie <[email protected]>",
"dependencies": {},
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"create-post": "create-post",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@dschau/create-gatsby-blog-post": "^1.1.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.23",
"@types/react-helmet": "^5.0.3",
"gatsby": "^1.9.110",
"gatsby-link": "^1.6.27",
"gatsby-plugin-catch-links": "^1.0.9",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-typescript": "^1.4.10",
"gatsby-source-filesystem": "^1.5.8",
"gatsby-transformer-remark": "^1.7.21",
"prettier": "^1.8.2",
"prop-types": "^15.6.0",
"tslint": "^5.8.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1"
}
}