-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "jakeer",
"version": "0.1.0",
"private": true,
"browser": {
"fs": false,
"path": false,
"os": false
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky",
"fix-lint": "npx eslint . --fix",
"lint": "npx eslint . --fix && next lint",
"format": "prettier --write .",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js"
},
"dependencies": {
"@giscus/react": "^3.0.0",
"@tanstack/react-query": "^5.37.1",
"@tippyjs/react": "^4.2.6",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"lodash": "^4.17.21",
"next": "14.2.3",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-twitter-widgets": "^1.11.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"autoprefixer": "^10.4.19",
"cloudinary-build-url": "^0.2.4",
"clsx": "^2.1.1",
"colord": "^2.9.3",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"gray-matter": "^4.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mdx-bundler": "^10.0.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"shiki": "^1.6.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}