-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "leaderboard",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://leaderboard.sliitfoss.org",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"prepare": "husky || true"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@primer/octicons-react": "^19.12.0",
"@primer/react": "^37.31.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.90.2",
"axios": "^1.7.9",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"framer-motion": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.10.3",
"react-router-dom": "^6.28.0",
"react-toggle": "^4.1.3",
"recharts": "^2.15.0",
"styled-components": "^5.3.11",
"use-local-storage-state": "^19.5.0",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-toggle": "^4.0.5",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.23",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.45.0",
"vite": "^6.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm build"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}