This repository has been archived by the owner on Oct 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.64 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
55
56
{
"name": "docs",
"private": true,
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"test": "yarn run lint && yarn run prettier-diff && yarn run build",
"deploy": "yarn run build && gh-pages -d _book",
"lint": "tslint -c tslint.json '{src,__tests__}/**/*.{ts,tsx}'",
"prettier": "prettier --single-quote --trailing-comma es5 'src/**/*.{ts,tsx,css,md}'",
"prettier-diff": "yarn prettier --list-different",
"format": "yarn prettier --write"
},
"renovate": {
"extends": [
"config:base",
"schedule:weekly"
],
"automerge": true,
"major": {
"automerge": false
}
},
"devDependencies": {
"@accounts/tslint-config-accounts": "0.0.9",
"@types/react": "16.4.11",
"@types/react-dom": "16.0.7",
"gatsby": "1.9.277",
"gatsby-plugin-react-helmet": "2.0.11",
"gatsby-plugin-react-next": "1.0.11",
"gatsby-plugin-sass": "1.0.26",
"gatsby-plugin-sitemap": "1.2.25",
"gatsby-plugin-styled-components": "2.0.11",
"gatsby-plugin-typescript": "1.4.20",
"gatsby-plugin-typography": "1.7.19",
"gatsby-remark-autolink-headers": "1.4.19",
"gatsby-remark-prismjs": "2.0.5",
"gatsby-source-filesystem": "1.5.39",
"gatsby-transformer-remark": "1.7.44",
"gh-pages": "1.2.0",
"prettier": "1.13.7",
"tslint": "5.11.0",
"typescript": "2.9.2"
},
"dependencies": {
"bulma": "0.7.1",
"gatsby-link": "1.6.46",
"prismjs": "1.15.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-helmet": "5.2.0",
"styled-components": "3.4.2",
"typography": "0.16.17",
"typography-theme-doelger": "0.15.11"
}
}