-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.63 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.63 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
{
"name": "dnd-resume",
"private": true,
"description": "Resume Builder",
"homepage": "https://github.com/Arman19941113/dnd-resume#readme",
"author": "Arman Tang",
"repository": {
"type": "git",
"url": "https://github.com/Arman19941113/dnd-resume"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"analyze": "npx vite-bundle-analyzer -c vite.config.ts",
"preview": "vite preview",
"lint": "eslint ."
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint",
"*.{js,ts,jsx,tsx,css}": "prettier --write"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@sentry/react": "^9.27.0",
"@sentry/vite-plugin": "^3.5.0",
"@tiptap/extension-link": "^2.14.0",
"@tiptap/pm": "^2.14.0",
"@tiptap/react": "^2.14.0",
"@tiptap/starter-kit": "^2.14.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^25.2.1",
"immer": "^10.1.1",
"js-base64": "^3.7.7",
"lucide-react": "^0.513.0",
"next-themes": "^0.4.6",
"pako": "^2.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.5.2",
"react-router": "^7.6.2",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"tw-animate-css": "^1.3.4",
"zod": "^3.25.56",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@tailwindcss/vite": "^4.1.8",
"@types/node": "^22.15.30",
"@types/pako": "^2.0.3",
"@types/react": "^19.1.6",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.1",
"eslint": "^9.28.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"rollup": "^4.42.0",
"tailwindcss": "^4.1.8",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.1",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-pwa": "^1.0.0"
},
"packageManager": "pnpm@10.12.4",
"volta": {
"node": "24.3.0",
"pnpm": "10.12.4"
}
}