-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.85 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
{
"name": "nazha.blog",
"version": "1.0.0",
"description": "nazha's Blog",
"main": "index.js",
"author": "nazha<[email protected]>",
"license": "MIT",
"keywords": [
"nazha",
"blog",
"next"
],
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"export": "next export",
"lint": "eslint . --ignore-path ./.gitignore",
"lint:fix": "eslint --fix . --ignore-path ./.gitignore",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc --ignore-path ./.gitignore"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.9.0",
"@codesandbox/sandpack-themes": "^2.0.21",
"@nzha/feed": "5.0.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^0.2.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"flowbite": "^2.0.0",
"flowbite-datepicker": "^1.2.2",
"framer-motion": "^9.1.7",
"light-date": "^1.2.0",
"lucide-react": "^0.287.0",
"mdx-bundler": "^8.1.0",
"next": "^13.5.5",
"next-auth": "^4.24.3",
"next-seo": "^4.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.34.0",
"react-ssr-prepass": "^1.5.0",
"react-toggle-dark-mode": "^1.1.1",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-prism": "^1.3.6",
"swr": "^2.2.4",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "16.11.2",
"@types/react": "17.0.31",
"@types/react-dom": "17.0.10",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "6.8.0",
"autoprefixer": "^10.4.16",
"babel-plugin-import-glob-array": "^0.2.0",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.5",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"esno": "^0.10.1",
"gray-matter": "^4.0.3",
"husky": "7.0.4",
"lint-staged": "11.2.3",
"next-sitemap": "^1.9.12",
"postcss": "^8.4.31",
"prettier": "2.4.1",
"tailwindcss": "^3.3.3",
"tiny-glob": "^0.2.9",
"typescript": "5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}