forked from ohcnetwork/leaderboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 KB
/
package.json
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
{
"name": "leaderboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node ./scripts/checkData.js && next dev",
"build": "node ./scripts/loadOrgData.js && next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "eslint . --fix",
"format": "prettier --write .",
"load-data": "node ./scripts/loadOrgData.js",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@t3-oss/env-nextjs": "^0.9.2",
"@vercel/kv": "^1.0.1",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"gray-matter": "^4.0.3",
"next": "^14.1.3",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-activity-calendar": "^2.2.7",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"rehype-stringify": "^9.0.4",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"server-only": "^0.0.1",
"unified": "^10.1.2",
"use-debounce": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.21",
"@types/react": "^18.2.60",
"autoprefixer": "^10.4.17",
"dotenv": "^16.4.5",
"eslint": "8.16.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.14.3",
"husky": "^8.0.3",
"octokit": "^3.1.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}