forked from ohcnetwork/leaderboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.28 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.28 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
{
"name": "leaderboard",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm prebuild && next dev",
"build": "pnpm prebuild && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prebuild": "tsx scripts/import-config.ts && tsx scripts/generate-icons.ts && tsx scripts/get-theme.ts",
"db:exec": "tsx scripts/db-exec-stdin.ts",
"db:prepare": "tsx scripts/db-prepare.ts",
"db:import": "tsx scripts/db-import.ts",
"db:export": "tsx scripts/db-export.ts",
"generate:workflow": "tsx scripts/generate-github-workflow.ts"
},
"dependencies": {
"@electric-sql/pglite": "^0.3.14",
"@electric-sql/pglite-tools": "^0.2.19",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"js-yaml": "^4.1.1",
"lucide-react": "^0.552.0",
"marked": "^17.0.0",
"next": "16.0.7",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.19",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.25",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.9",
"@vitest/ui": "^4.0.9",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.1",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohcnetwork/leaderboard.git"
},
"author": "Open Healthcare Network",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohcnetwork/leaderboard/issues"
},
"homepage": "https://github.com/ohcnetwork/leaderboard#readme"
}