-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
88 lines (88 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"name": "bottender-docs",
"description": "The Bottender docs",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"build": "gatsby build",
"precommit": "lint-staged",
"deploy": "gatsby build && cp CNAME public/ && gh-pages -d public -b master -m 'Auto-generated commit [ci skip]'",
"dev": "gatsby develop",
"dev:mobile": "gatsby develop -H 0.0.0.0",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint 'src/**/*.js'",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint src",
"lint:staged": "lint-staged",
"reset": "rimraf ./.cache",
"serve": "gatsby serve",
"prettier:content": "prettier content/**/*.md --write"
},
"dependencies": {
"gatsby": "^1.9.273",
"gatsby-link": "^1.6.45",
"gatsby-plugin-glamor": "^1.6.13",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-offline": "^1.0.18",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sitemap": "^1.2.25",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-plugin-typography": "^1.7.19",
"gatsby-remark-autolink-headers": "^1.4.19",
"gatsby-remark-images": "^1.5.67",
"gatsby-remark-prismjs": "^1.2.20",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-remark": "^1.7.44",
"glamorous": "^4.13.1",
"lodash": "^4.17.10",
"react": "^16.4.1",
"react-burger-menu": "^2.5.2",
"react-helmet": "^5.2.0",
"react-timeago": "^4.1.9",
"styled-components": "^3.3.3",
"styled-normalize": "^8.0.0",
"typography": "^0.16.17",
"typography-theme-kirkham": "^0.16.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-yoctol": "^0.16.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"prettier-package-json": "^1.6.0",
"rimraf": "^2.6.2",
"stylelint": "^9.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-yoctol": "^1.0.2",
"stylelint-processor-styled-components": "^1.3.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"stylelint",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*.{babelrc,json}": [
"prettier --parser json-stringify --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}