-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.46 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 5.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "infinite-fusion-nuzlocke",
"version": "0.6.0",
"private": true,
"type": "module",
"scripts": {
"licenses:generate": "jiti scripts/generate-licenses.ts",
"dev": "next dev --turbopack --port 4000",
"build": "next build",
"start": "next start",
"lint": "biome lint src tests scripts data --diagnostic-level=error --max-diagnostics=500 --vcs-use-ignore-file=true --files-ignore-unknown=true",
"lint:fix": "biome lint --write src tests scripts data --diagnostic-level=error --max-diagnostics=500 --vcs-use-ignore-file=true --files-ignore-unknown=true",
"lint:all": "biome lint src tests scripts data --vcs-use-ignore-file=true --files-ignore-unknown=true",
"format": "biome format --write src tests scripts data --vcs-use-ignore-file=true --files-ignore-unknown=true",
"format:check": "biome check src tests scripts data --formatter-enabled=true --linter-enabled=false --assist-enabled=false --vcs-use-ignore-file=true --files-ignore-unknown=true",
"validate": "pnpm format:check && pnpm lint",
"validate:fix": "pnpm format && pnpm lint:fix",
"typecheck": "tsc --noEmit",
"type-check": "pnpm typecheck",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "NODE_NO_WARNINGS=1 vitest run --silent=passed-only",
"test:run:verbose": "vitest run",
"test:run:browser": "VITEST_BROWSER=true vitest run --project browser",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "vitest --ui --coverage",
"test:coverage:watch": "vitest --coverage",
"test:coverage:html": "vitest run --coverage --reporter=html",
"coverage:badge": "node scripts/generate-coverage-badge.js",
"react-doctor:badge": "node scripts/generate-react-doctor-badge.js",
"coverage:full": "pnpm test:coverage && pnpm coverage:badge",
"analyze": "ANALYZE=true pnpm build",
"scrape": "npm-run-all --sequential scrape:*",
"scrape:pokedex": "jiti scripts/scrape-pokedex.ts && jiti scripts/fetch-pokemon-data.ts",
"scrape:encounters": "jiti scripts/scrape-wild-encounters.ts",
"validate:route-articles": "jiti scripts/validate-route-article-coverage.ts",
"scrape:legendary": "jiti scripts/scrape-legendary-encounters.ts",
"scrape:safari": "jiti scripts/scrape-safari-encounters.ts",
"scrape:eggs": "jiti scripts/scrape-egg-locations.ts",
"scrape:special": "jiti scripts/scrape-special-encounters.ts",
"data:pr-body": "jiti scripts/generate-data-pr-body.ts",
"data:refresh": "pnpm run scrape && pnpm run test:run",
"sprites:download": "jiti scripts/scrape-pokemon-icons.ts",
"spritesheet": "pnpm run sprites:download && jiti scripts/generate-spritesheet.ts",
"mcp:test": "npx -y @modelcontextprotocol/inspector npx @upstash/context7-mcp",
"prepare": "husky"
},
"dependencies": {
"@floating-ui/react": "^0.27.19",
"@headlessui/react": "^2.2.9",
"@tanstack/query-async-storage-persister": "^5.95.2",
"@tanstack/query-persist-client-core": "^5.95.2",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"@tanstack/react-query-persist-client": "^5.95.2",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"es-toolkit": "^1.45.1",
"fuse.js": "^7.1.0",
"idb-keyval": "^6.2.2",
"lucide-react": "^1.7.0",
"mitt": "^3.0.1",
"ms": "^2.1.3",
"next": "16.2.1",
"next-themes": "^0.4.6",
"poke-types": "^1.0.22",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-github-btn": "^1.4.0",
"react-intersection-observer": "^10.0.3",
"tailwind-merge": "^3.5.0",
"ts-pattern": "^5.9.0",
"use-debounce": "^10.1.0",
"uuid": "^13.0.0",
"valtio": "^2.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@djankies/vitest-mcp": "^0.5.1",
"@next/bundle-analyzer": "^16.2.1",
"@smithery/cli": "^4.7.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cli-progress": "^3.11.6",
"@types/ms": "^2.1.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.2",
"@vitest/browser-playwright": "4.1.2",
"@vitest/coverage-istanbul": "^4.1.2",
"@vitest/coverage-v8": "4.1.2",
"@vitest/ui": "^4.1.2",
"babel-plugin-react-compiler": "1.0.0",
"cheerio": "^1.2.0",
"cli-progress": "^3.12.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"oxipng": "^1.0.1",
"playwright": "^1.58.2",
"pngquant-bin": "^9.0.0",
"pokedex-promise-v2": "^4.2.1",
"sharp": "^0.34.5",
"sharp-cli": "^5.2.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"engines": {
"node": "22.x",
"pnpm": "10.x"
},
"lint-staged": {
"*": [
"biome check --write --diagnostic-level=error --max-diagnostics=2000 --no-errors-on-unmatched --files-ignore-unknown=true --vcs-use-ignore-file=true"
]
}
}