forked from gatsbyjs/gatsby-starter-default
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 924 Bytes
/
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
{
"name": "gatsby-starter-typescript",
"description": "Gatsby TypeScript starter",
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"@types/node": "^8.0.7",
"@types/react": "15.0.21",
"@types/react-dom": "0.14.23",
"gatsby": "^1.9.119",
"gatsby-link": "^1.6.28",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-typescript": "^1.4.10"
},
"keywords": [
"gatsby, typescript"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --parser typescript --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.ts*\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^1.8.2"
},
"contributors": [
"fabien0102 <fabien0102@gmail.com>",
"Hays Clark <hays.clark@gmail.com>"
]
}