-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.16 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.16 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
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": "python-bit",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.7",
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-navigation-menu": "^1.2.6",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-radio-group": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@tailwindcss/postcss": "^4.1.3",
"@tailwindcss/typography": "^0.5.16",
"@types/prismjs": "^1.26.5",
"@uiw/codemirror-theme-vscode": "^4.23.10",
"@uiw/react-codemirror": "^4.23.10",
"assert": "^2.1.0",
"body-scroll-lock": "^4.0.0-beta.0",
"child_process": "^1.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"concurrently": "^9.1.2",
"firebase": "^11.6.0",
"firebase-admin": "^13.2.0",
"framer-motion": "^12.6.3",
"jose": "^6.0.10",
"lucide-react": "^0.487.0",
"motion": "^12.6.3",
"nanoid": "^5.1.5",
"next": "15.2.5",
"next-auth": "^4.24.11",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"react": "19.1.0",
"react-circular-progressbar": "^2.2.0",
"react-dom": "19.1.0",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.55.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.7",
"react-responsive": "^10.0.1",
"react-split": "^2.0.14",
"react-syntax-highlighter": "^15.6.1",
"react-toastify": "^11.0.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.2.1",
"split.js": "^1.6.5",
"swr": "^2.3.3",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.2",
"@types/lodash": "^4.17.16",
"@types/node": "^22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9",
"eslint-config-next": "15.2.5",
"lodash": "^4.17.21",
"nodemon": "^3.1.9",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"velite": "^0.2.2"
},
"overrides": {
"@types/react": "19.1.0",
"@types/react-dom": "19.1.2"
}
}