-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "my-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --updateSnapshot --passWithNoTests",
"test:watch": "jest --watch --updateSnapshot",
"test:ci": "jest --ci",
"prepare": "husky install",
"format": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.2",
"@types/node": "18.16.3",
"@types/react": "^18.2.6",
"@types/react-dom": "18.2.3",
"@vercel/og": "^0.5.17",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.0",
"classnames": "^2.3.2",
"eslint": "8.39.0",
"eslint-config-next": "13.4.0",
"gray-matter": "^4.0.3",
"next": "^13.4.2",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"openai": "^4.20.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.2",
"tw-colors": "^1.2.6",
"typescript": "5.0.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"globby": "^11.0.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-img-size": "^1.0.1",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-toc": "^8.0.1",
"start-server-and-test": "^2.0.0",
"zlib": "^1.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}