-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "github-tracker",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --config vitest.workspace.ts",
"test:watch": "vitest --config vitest.workspace.ts",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test:e2e": "E2E_PORT=$(node -e \"const s=require('net').createServer();s.listen(0,()=>{console.log(s.address().port);s.close()})\") playwright test"
},
"dependencies": {
"@kobalte/core": "^0.13.11",
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@solidjs/router": "^0.16.1",
"corvu": "^0.7.2",
"idb": "^8.0.3",
"solid-js": "^1.9.11",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.30.0",
"@cloudflare/vitest-pool-workers": "^0.13.3",
"@playwright/test": "^1.58.2",
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/user-event": "^14.6.1",
"daisyui": "^5.5.19",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.4",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.1.0",
"wrangler": "^4.76.0"
}
}