-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "reactiflux.com",
"version": "0.3.14",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && yarn build:sitemap",
"build:sitemap": "next-sitemap",
"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": {
"@netlify/functions": "^2.4.1",
"@next/third-parties": "^14.1.0",
"@types/node": "20.6.0",
"@types/react": "17.0.37",
"@types/styled-components": "^5.1.15",
"@vcarl/remark-headings": "^0.0.1",
"airtable": "^0.12.2",
"client-oauth2": "^4.3.3",
"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",
"netlify-cli": "^17.10.2",
"next": "^12.3.4",
"next-sitemap": "^4.2.2",
"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",
"react-hook-form": "^7.49.2",
"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",
"zod": "^3.23.8"
},
"prettier": {
"trailingComma": "all"
}
}