-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.88 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
121
122
123
124
125
126
{
"name": "bhanu.fyi",
"version": "3.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"commit": "czg",
"start": "next start",
"turbo": "next dev --turbo --show-all",
"dev": "next dev",
"build": "next build",
"build:analyze": "contentlayer build & ANALYZE=true next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"export": "contentlayer build & next build",
"compile": "tsc --watch",
"typecheck": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslint-cache",
"lint:next": "next lint",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslint-cache --fix",
"prettier": "prettier 'src/**/*.{js,jsx,ts,tsx,mdx}' --check --cache",
"format": "prettier 'src/**/*.{js,jsx,ts,tsx,mdx}' --write --cache",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@react-three/drei": "^9.114.3",
"@react-three/fiber": "^8.16.7",
"@sreetamdas/karma": "3.1.1",
"@supabase/supabase-js": "^2.39.7",
"clsx": "^2.1.0",
"contentlayer": "^0.3.4",
"esbuild": "^0.20.1",
"framer-motion": "^11.0.8",
"image-size": "^1.1.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.452.0",
"mdx-bundler": "^10.0.1",
"micromark": "^4.0.0",
"next": "14.1.3",
"next-contentlayer": "^0.3.4",
"nextjs-toploader": "^1.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-type-animation": "^3.2.0",
"react-wrap-balancer": "^1.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "3.0.1",
"remark-toc": "^9.0.0",
"server-only": "^0.0.1",
"three": "^0.165.0",
"unist-util-visit": "^5.0.0",
"zustand": "4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/eslint-plugin-next": "^14.1.3",
"@notionhq/client": "^2.2.14",
"@octokit/types": "^12.6.0",
"@types/eslint": "^8.56.5",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.11",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/three": "^0.165.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.18",
"czg": "^1.9.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"markdown-wasm": "^1.2.0",
"nano-staged": "^0.8.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"shiki": "^1.1.7",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.2"
},
"browser": {
"fs": false
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha256.91452fdfa46234ae447d46d5c4fc4e7e0a7058f90495c4b6f77f8beebbb154e3",
"nano-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix",
"pnpm lint",
"pnpm format",
"pnpm prettier"
],
"*.{json,md}": [
"pnpm format",
"pnpm prettier"
]
},
"volta": {
"node": "20.11.1"
}
}