-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.14 KB
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
{
"name": "jonleopard.com",
"version": "6.0.0",
"private": true,
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"scripts": {
"lint": "eslint ./src/pages/* ./src/components/* ./src/lib/* -c .eslintrc.json --fix --ext ts,tsx",
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": "lint:staged && generate",
"dependencies": {
"@headlessui/react": "^1.7.3",
"@popperjs/core": "^2.11.6",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"a11y-react-emoji": "^1.2.0",
"contentful": "^9.2.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"isomorphic-unfetch": "^3.1.0",
"markdown": "^0.5.0",
"next": "^12.3.1",
"next-plausible": "^3.6.3",
"next-seo": "^5.5.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-calendly": "^4.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-popper": "^2.3.0",
"styled-components": "^5.3.6",
"tailwindcss": "^3.1.8",
"twin.macro": "^2.8.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@netlify/plugin-nextjs": "^4.24.3",
"@next/eslint-plugin-next": "^12.3.1",
"@types/node": "^18.8.4",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.21",
"@types/styled-components": "^5.1.26",
"babel-eslint": "^10.1.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"feed": "^4.2.2",
"globby": "^13.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"react-is": "^18.2.0",
"sitemap": "^7.1.1",
"typescript": "^4.8.4"
}
}