This repository has been archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.74 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
{
"name": "tom.fm",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"deploy": "now --prod",
"dev": "gatsby develop",
"start": "gatsby serve"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --max-warnings 0 --cache",
"git add"
],
"{*.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@mdx-js/mdx": "1.5.1",
"@mdx-js/react": "1.5.1",
"firacode": "2.0.0",
"gatsby": "2.15.36",
"lodash.kebabcase": "4.1.1",
"lodash.mapvalues": "4.6.0",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-helmet": "5.2.1",
"sanitize.css": "^11.0.0",
"styled-components": "4.4.0"
},
"devDependencies": {
"@types/lodash.kebabcase": "4.1.6",
"@types/lodash.mapvalues": "4.6.6",
"@types/styled-components": "4.1.19",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"babel-plugin-styled-components": "1.10.6",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mdx": "1.5.6",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"gatsby-plugin-catch-links": "2.1.15",
"gatsby-plugin-feed": "2.3.19",
"gatsby-plugin-mdx": "1.0.52",
"gatsby-plugin-react-helmet": "3.1.11",
"gatsby-plugin-sharp": "2.2.29",
"gatsby-plugin-styled-components": "3.1.9",
"gatsby-plugin-twitter": "2.1.12",
"gatsby-plugin-typescript": "2.1.12",
"gatsby-remark-autolink-headers": "^2.1.16",
"gatsby-remark-copy-linked-files": "2.1.28",
"gatsby-remark-embedder": "1.3.4",
"gatsby-remark-images": "3.1.28",
"gatsby-remark-responsive-iframe": "^2.2.25",
"gatsby-remark-smartypants": "2.1.14",
"gatsby-remark-unwrap-images": "1.0.1",
"gatsby-source-filesystem": "2.1.31",
"gatsby-transformer-sharp": "2.2.21",
"husky": "3.0.8",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.6.4",
"typescript-styled-plugin": "0.14.0"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
}