-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.98 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky install",
"postinstall": "patch-package && chakra-cli tokens styles/theme.ts",
"theme": "chakra-cli tokens styles/theme.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/quicksand": "^4.5.12",
"@fontsource/raleway": "^4.5.12",
"date-fns": "^2.30.0",
"feed": "^4.2.2",
"framer-motion": "^7.10.3",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.4",
"next": "^14.1.0",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^3.1.55",
"patch-package": "^6.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"reading-time": "^1.5.0",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-img-size": "^1.0.1",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-capitalize": "^1.1.0",
"remark-code-titles": "^0.1.2",
"remark-textr": "^5.0.1",
"remark-unwrap-images": "^3.0.1",
"title": "^3.5.3",
"typographic-apostrophes": "^1.1.1",
"typographic-apostrophes-for-possessive-plurals": "^1.0.5",
"typographic-arrows": "^1.0.3",
"typographic-copyright": "^1.0.1",
"typographic-ellipses": "^1.0.11",
"typographic-em-dashes": "^1.0.2",
"typographic-en-dashes": "^1.0.1",
"typographic-math-symbols": "^1.1.5",
"typographic-quotes": "^2.0.1",
"typographic-registered-trademark": "^1.0.1",
"typographic-single-spaces": "^1.0.2",
"typographic-trademark": "^1.0.1"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/styled-system": "^2.3.4",
"@types/node": "^18.19.15",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "2.7.1",
"string-strip-html": "^13.4.6",
"typescript": "^4.9.5"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
}
}