-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "blogv2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@giscus/react": "^2.4.0",
"autoprefixer": "10.4.14",
"gray-matter": "^4.0.3",
"gsap": "^3.12.5",
"jotai": "^2.7.2",
"next": "13.3.0",
"postcss": "8.4.21",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-responsive": "^9.0.2",
"react-syntax-highlighter": "^15.5.0",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"remark-prism": "^1.3.6",
"styled-components": "^5.3.11",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@swc-jotai/react-refresh": "^0.1.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/styled-components": "^5.1.34",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"tailwind-styled-components": "^2.2.0",
"typescript": "5.0.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}