-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.68 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-starter",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "bunx --bun vite build",
"check": "turbo format lint typecheck coverage build sb:build knip",
"coverage": "vitest run --coverage",
"dev": "vite",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"format": "prettier --check --cache .",
"format:fix": "prettier --write --cache .",
"knip": "knip",
"lint": "eslint --color --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "bun lint --fix",
"prepare": "is-ci || lefthook install",
"preview": "vite preview",
"sb": "storybook dev -p 6006",
"sb:build": "storybook build",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc"
},
"prettier": "@jimmy.codes/prettier-config",
"dependencies": {
"@radix-ui/react-slot": "1.1.1",
"@tanstack/react-query": "5.64.2",
"@tanstack/react-router": "1.97.14",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.6.0"
},
"devDependencies": {
"@iconify-json/logos": "1.2.4",
"@iconify-json/lucide": "1.2.24",
"@iconify/tailwind4": "1.0.1",
"@jimmy.codes/eslint-config": "3.29.0",
"@jimmy.codes/prettier-config": "1.3.0",
"@playwright/test": "1.50.0",
"@storybook/addon-a11y": "8.5.1",
"@storybook/addon-essentials": "8.5.1",
"@storybook/addon-interactions": "8.5.1",
"@storybook/addon-links": "8.5.1",
"@storybook/addon-themes": "8.5.1",
"@storybook/react": "8.5.1",
"@storybook/react-vite": "8.5.1",
"@tailwindcss/typography": "0.5.16",
"@tailwindcss/vite": "4.0.0",
"@tanstack/react-query-devtools": "5.64.2",
"@tanstack/router-devtools": "1.97.14",
"@tanstack/router-vite-plugin": "1.97.14",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@total-typescript/ts-reset": "0.6.1",
"@types/bun": "1.2.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"daisyui": "5.0.0-beta.2",
"eslint": "9.18.0",
"gitzy": "5.7.1",
"happy-dom": "16.7.2",
"is-ci": "4.1.0",
"jiti": "2.4.2",
"knip": "5.43.1",
"lefthook": "1.10.10",
"msw": "2.7.0",
"prettier": "3.4.2",
"storybook": "8.5.1",
"tailwindcss": "4.0.0",
"turbo": "2.3.4",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.4"
},
"packageManager": "bun@1.2.0"
}