-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.42 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "my-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"tailwind:build": "npx tailwindcss-cli@latest build -i ./styles/tailwind.css -o ./styles/globals.css",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "remark . --output"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mantine/core": "^5.9.5",
"@mantine/hooks": "^5.9.5",
"@mapbox/rehype-prism": "^0.8.0",
"@mdx-js/loader": "^2.1.2",
"@mdx-js/mdx": "^2.1.2",
"@mdx-js/react": "^2.1.2",
"@next/mdx": "^12.2.4",
"@prisma/client": "^4.7.1",
"@remark-embedder/core": "^3.0.1",
"@remark-embedder/transformer-oembed": "^3.0.0",
"@tabler/icons": "^1.117.0",
"@tailwindcss/typography": "^0.5.4",
"@tanstack/react-query": "^4.20.4",
"@types/prismjs": "^1.26.0",
"@types/remark-prism": "^1.3.3",
"date-fns": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"gray-matter": "^4.0.3",
"jest": "^28.1.3",
"mdx-prism": "^0.3.4",
"next": "^13.4.3",
"next-mdx-remote": "^4.1.0",
"next-themes": "^0.2.1",
"next-transpile-modules": "^9.0.0",
"prism-react-renderer": "^1.3.5",
"prisma": "^4.7.1",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-chatbot-kit": "^2.1.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.41.0",
"react-hot-toast": "^2.4.0",
"recoil": "^0.7.6",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.1.0",
"rehype-external-links": "^2.0.0",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-code-titles": "^0.1.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
"sharp": "^0.32.1",
"swiper": "^8.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.3",
"@types/gtag.js": "^0.0.12",
"@types/node": "18.6.0",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"remark-toc": "^8.0.1",
"tailwindcss": "^3.2.4",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-toc",
{
"heading": "contents"
}
]
]
},
"description": "My Tech Blog",
"main": "index.js",
"repository": "https://github.com/thewoowon/my-tech-blog.git",
"author": "thewoowon <[email protected]>",
"license": "MIT"
}