-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.95 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
{
"name": "comicarr",
"private": true,
"version": "0.27.0",
"type": "module",
"portless": {
"name": "comicarr"
},
"scripts": {
"dev": "PORTLESS_PORT=1355 portless run vite",
"dev:vite": "vite",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,json}\" \"tests/e2e/**/*.{ts,tsx,js,jsx,mjs}\" \"playwright.config.ts\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,json}\" \"tests/e2e/**/*.{ts,tsx,js,jsx,mjs}\" \"playwright.config.ts\"",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "npm run test:e2e:smoke",
"test:e2e:smoke": "playwright test --project=chromium-smoke",
"test:e2e:full": "playwright test --project=chromium-full",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@date-fns/utc": "^2.1.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-avatar": "^1.2.2",
"@radix-ui/react-hover-card": "^1.1.20",
"@radix-ui/react-slot": "^1.3.3",
"@shadcn/react": "^0.2.1",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-table": "^9.0.0",
"@tanstack/react-virtual": "^3.13.23",
"ai": "^7.0.31",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^1.8.0",
"nuqs": "^2.9.2",
"react": "^19.2.0",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.5",
"react-router-dom": "^7.18.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^26.1.2",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.0",
"autoprefixer": "^10.5.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.9.0",
"happy-dom": "^20.11.0",
"msw": "^2.15.0",
"portless": "^0.15.5",
"postcss": "^8.5.25",
"prettier": "^3.8.4",
"tailwindcss": "^4.1.18",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.66.0",
"vite": "^8.0.10",
"vitest": "^4.1.10"
}
}