-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.31 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
{
"name": "openleaguemanager",
"private": true,
"version": "0.3.1",
"type": "module",
"scripts": {
"verify:champion-timings": "node scripts/verify-champion-timings.mjs",
"verify:champion-relationships": "node scripts/verify-champion-relationships.mjs",
"dev": "npm run verify:champion-timings && npm run verify:champion-relationships && vite",
"build": "npm run verify:champion-timings && npm run verify:champion-relationships && vite build",
"build:types": "tsc -p tsconfig.release.json",
"preview": "vite preview",
"generate:splash-manifest": "tsx scripts/generate-splash-manifest.ts",
"prebuild": "npm run generate:splash-manifest",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource/barlow-condensed": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@fontsource/oswald": "^5.2.8",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-updater": "^2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.15",
"d3": "^7.9.0",
"i18n-iso-countries": "^7.14.0",
"i18next": "^26.0.3",
"lucide-react": "^1.16.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.2",
"react-router-dom": "^7.14.0",
"recharts": "^3.8.1",
"shadcn": "^4.8.2",
"tailwind-merge": "^3.6.0",
"topojson-client": "^3.1.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.11.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/d3": "^7.4.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"tsx": "^4.22.4",
"typescript": "~6.0.2",
"vite": "^8.0.5",
"vitest": "^4.1.2"
}
}