-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.13 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.13 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
113
114
{
"name": "jrbrowning.github.io",
"version": "1.0.0",
"description": "A modern React dashboard for visualizing GitHub contributions with analytics (charts/sankey) and developer-friendly tools",
"main": "main.tsx",
"homepage": "https://jrbrowning.github.io",
"private": true,
"type": "module",
"keywords": [
"github",
"contributions",
"dashboard",
"analytics",
"react",
"vite",
"tailwindcss",
"typescript",
"developer-tools"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.md": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"prepare": "husky install",
"clean": "rm -rf node_modules; rm -rf package-lock.json",
"rebuild": "npm run clean && npm install",
"test": "jest",
"test:watch": "jest --watchAll",
"commit": "cz",
"gh-page-build": "npm run build",
"gh-page-preview": "serve docs --single"
},
"author": "Jeff Browning <jeff@craftcoded.com>",
"license": "MIT",
"engines": {
"node": "20.19.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jrbrowning/jrbrowning.github.io"
},
"bugs": {
"url": "https://github.com/jrbrowning/jrbrowning.github.io/issues"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"@types/plotly.js": "^3.0.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.35.1",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^17.0.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"gh-pages": "^6.2.0",
"gsap": "^3.13.0",
"html-validate": "^9.7.1",
"husky": "^9.1.7",
"jest": "^30.0.3",
"nanoid": "^5.1.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"serve": "^14.2.4",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3",
"uuid": "^11.1.0",
"vite": "^7.0.0"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@tailwindcss/vite": "^4.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.0",
"lucide-react": "^0.525.0",
"plotly.js-dist-min": "^3.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"recharts": "^3.0.2"
}
}