-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
63 lines (63 loc) · 1.74 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
58
59
60
61
62
63
{
"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",
"test": "mocha tests"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@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.2.10",
"next-themes": "^0.2.1",
"react": "^18.3.1",
"react-activity-calendar": "^2.2.11",
"react-dom": "^18.3.1",
"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.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.19",
"chai": "^5.1.1",
"chai-json-schema": "^1.5.1",
"dotenv": "^16.4.5",
"eslint": "8.16.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^8.0.3",
"mocha": "^10.7.0",
"octokit": "^3.2.1",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"strip-json-comments": "^5.0.1",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.4",
"yaml": "^2.5.0"
}
}