-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "clickhub",
"version": "1.0.0",
"description": "A showcase of creative button designs for Hacktoberfest 2025",
"private": true,
"keywords": [
"hacktoberfest",
"buttons",
"showcase",
"nextjs",
"react",
"css",
"javascript"
],
"author": "ClickHub Contributors",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"validate-contributions": "node scripts/validate-contributions.js",
"preview": "npm run build && npm start",
"vercel-build": "npm run lint && npm run type-check && npm run build",
"postbuild": "echo 'Build completed successfully!'"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"framer-motion": "^12.23.24",
"lucide-react": "^0.544.0",
"motion": "^12.23.24",
"next": "^16.0.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-tsparticles": "^2.12.2",
"tsparticles": "^3.9.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}