forked from reactiflux/reactiflux.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "reactiflux.com",
"version": "π",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "next lint && prettier --check .",
"prettier": "prettier --write .",
"install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet yarn.lock && yarn install || exit 0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-merge": "yarn install-if-package-changed",
"post-checkout": "yarn install-if-package-changed"
}
},
"dependencies": {
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/styled-components": "^5.1.15",
"@vcarl/remark-headings": "^0.0.1",
"date-fns": "^2.27.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"gray-matter": "^4.0.3",
"husky": "^4.2.5",
"mdast-util-to-string": "^3.1.0",
"minireset.css": "^0.0.6",
"moment": "^2.27.0",
"next": "12.0.4",
"polished": "^3.6.5",
"prettier": "^2.1.0",
"pretty-quick": "^3.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-headroom": "^2.1.2",
"react-helmet": "^5.2.1",
"rehype-slug": "^5.0.0",
"rehype-stringify": "^9.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"styled-components": "^5.3.3",
"typeface-poppins": "^0.0.72",
"typeface-space-mono": "^0.0.71",
"typeface-work-sans": "^0.0.72",
"typescript": "4.5.2",
"unified": "^10.1.1"
},
"prettier": {
"trailingComma": "all"
}
}