-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "vite-react-starter",
"license": "MIT",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint-staged": "lint-staged",
"prepare": "husky",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"e2e": "playwright test",
"lint": "eslint --cache --ignore-path .gitignore --ext .ts,.tsx .",
"lint:fix": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx .",
"type:check": "tsc --noEmit --pretty",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@tanstack/react-query": "5.62.15",
"@tanstack/react-router": "1.95.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"zustand": "5.0.2"
},
"devDependencies": {
"@playwright/test": "1.49.1",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/addon-onboarding": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/testing-library": "0.2.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-testing-library": "7.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.3.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"storybook": "8.4.7",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "6.0.7",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}