-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.36 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.36 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
103
104
105
106
107
108
109
110
111
112
{
"name": "magic-resume",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"analyze": "cross-env ANALYZE=true next build",
"build:analyze": "npm run build && npm run analyze:bundle",
"analyze:bundle": "npx @next/bundle-analyzer",
"build:prod": "NODE_ENV=production next build",
"build:standalone": "next build && next export",
"i18n:check": "tsx scripts/i18n-check.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"npm run i18n:check"
],
"*.{json,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"@clerk/nextjs": "^6.22.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@langchain/anthropic": "^0.3.21",
"@langchain/core": "^0.3.57",
"@langchain/google-genai": "^0.2.10",
"@langchain/langgraph": "^0.3.3",
"@langchain/tavily": "^0.1.3",
"@microlink/react-json-view": "^1.26.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/themes": "^3.2.1",
"@tabler/icons-react": "^3.36.1",
"@tiptap/core": "^2.14.0",
"@tiptap/extension-color": "^2.14.0",
"@tiptap/extension-link": "^2.14.0",
"@tiptap/extension-text-align": "^2.14.0",
"@tiptap/extension-underline": "^2.14.0",
"@tiptap/react": "^2.14.0",
"@tiptap/starter-kit": "^2.14.0",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.23",
"@types/lodash.get": "^4.4.9",
"@xyflow/react": "^12.10.0",
"@xyflow/system": "^0.0.74",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"fast-json-patch": "^3.1.1",
"framer-motion": "^12.17.0",
"fs": "^0.0.1-security",
"gsap": "^3.14.2",
"html2canvas": "^1.4.1",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.2.0",
"idb": "^8.0.3",
"immer": "^11.1.3",
"langchain": "^0.3.27",
"lodash": "^4.17.23",
"lodash.get": "^4.4.2",
"lucide-react": "^0.513.0",
"motion": "^12.29.3",
"nanoid": "^5.1.5",
"next": "15.3.8",
"pixi-live2d-display": "^0.4.0",
"pixi.js": "^6.5.10",
"posthog-js": "^1.336.4",
"react": "^19.0.0",
"react-circular-progressbar": "^2.2.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-i18next": "^15.5.2",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-zoom-pan-pinch": "^3.7.0",
"recharts": "^3.7.0",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.56",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.3.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.31",
"@types/react": "^19.1.6",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"glob": "^13.0.1",
"husky": "^9.1.7",
"tailwindcss": "^4",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.10.2"
}
}