forked from leerob/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.93 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
{
"name": "fenske.xyz",
"description": "My personal website.",
"version": "0.0.0",
"author": {
"name": "Anton Fenske",
"email": "anton@fenske.xyz",
"url": "https://fenske.xyz"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fenske/fenske.xyz"
},
"scripts": {
"build": "next build",
"dev": "next",
"lint": "eslint . --ext .json --ext .js",
"prettier": "prettier --write \"**/*.{html,js,json,md,mdx,yml}\"",
"start": "next start",
"test": "yarn lint",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,json,md,mdx,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@chakra-ui/core": "0.8.0",
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@mapbox/rehype-prism": "0.4.0",
"@mdx-js/loader": "1.6.16",
"@mdx-js/react": "1.6.16",
"@next/mdx": "9.4.1",
"babel-plugin-import-glob-array": "0.2.0",
"comma-number": "2.0.1",
"date-fns": "2.13.0",
"emotion-theming": "10.0.27",
"firebase": "7.14.4",
"firebase-admin": "8.12.1",
"googleapis": "48.0.0",
"mdx-prism": "0.3.1",
"next": "9.4.1",
"next-mdx-enhanced": "3.0.0",
"next-seo": "4.5.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-tweet-embed": "1.2.2",
"reading-time": "1.2.0",
"remark-autolink-headings": "6.0.0",
"remark-capitalize": "1.1.0",
"remark-code-titles": "0.1.1",
"remark-slug": "6.0.0",
"swr": "0.2.0",
"unsplash-js": "6.0.0",
"iframe-resizer-react": "^1.0.4"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-get-off-my-lawn": "5.0.1",
"globby": "11.0.0",
"husky": "4.2.3",
"lint-staged": "10.1.2",
"prettier": "2.0.5",
"rehype": "10.0.0"
}
}