-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.14 KB
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
{
"name": "cracking-interview-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm generate:content && next build --turbopack",
"build:analyze": "ANALYZE=true pnpm run build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "prettier --write --ignore-unknown",
"generate:content": "tsx scripts/generate-content.ts",
"generate:watch": "chokidar \"src/content/**/*\" -c \"pnpm generate:content\"",
"dev:hot": "concurrently \"pnpm run generate:watch\" \"pnpm dev\"",
"generate:leetcode": "tsx scripts/leetcode.ts",
"export": "pnpm generate:content && next build && touch out/.nojekyll",
"deploy": "pnpm generate:content && next build && touch out/.nojekyll"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.5.0",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.85.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.1.0",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"lucide-react": "^0.541.0",
"next": "15.5.0",
"next-mdx-remote": "^5.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-medium-image-zoom": "^5.3.0",
"react-syntax-highlighter": "^15.6.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.5.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.21",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"daisyui": "^5.0.50",
"eslint": "^9",
"eslint-config-next": "15.5.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"tsx": "^4.19.0"
}
}