-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
73 lines (73 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
{
"name": "indogithubers",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"biome:clean": "biome clean",
"biome:migrate": "biome migrate --write",
"build": "tsc -b && vite build",
"check": "biome check --unsafe --reporter=summary",
"dev": "vite",
"format": "biome format --write",
"postinstall": "husky",
"lint": "biome lint --write",
"lint:unsafe": "biome lint --write --unsafe",
"lint:ci": "biome lint",
"preview": "vite preview",
"test:setup": "npx playwright install --with-deps",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test --grep @smoke",
"test:e2e:desktop": "playwright test --project='Desktop Chrome'",
"test:e2e:mobile": "playwright test --project='Mobile Chrome'",
"test:e2e:report": "playwright show-report",
"docker": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -e GITLAB_AUTH_TOKEN=$GITLAB_AUTH_TOKEN -it mcr.microsoft.com/playwright:v1.49.0-noble /bin/bash"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-table": "^8.20.5",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"nuqs": "^2.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-github-calendar": "^4.5.1",
"react-router-dom": "^6.28.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"vite-plugin-pwa": "^0.21.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.20",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "8.4.49",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"vite": "^6.0.3"
},
"packageManager": "npm@^10.8.2",
"engines": {
"node": "^20.x",
"npm": "^10.8.2"
}
}