-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.36 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-starter",
"description": "A starter project for React applications using a curated technology stack for optimal performance, reliability, and maintainability.",
"keywords": [
"react, typescript, vite"
],
"author": "LeanStacks",
"license": "MIT",
"version": "1.4.0-alpha.1",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/leanstacks/react-starter.git"
},
"scripts": {
"clean": "rimraf coverage dist storybook-static",
"dev": "vite --open",
"build": "tsc && vite build",
"build:storybook": "storybook build",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --silent",
"test:ui": "vitest --ui --coverage --silent",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource-variable/noto-sans": "5.2.10",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-regular-svg-icons": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@fortawesome/react-fontawesome": "3.2.0",
"@hookform/resolvers": "5.2.2",
"@react-spring/web": "10.0.3",
"@tailwindcss/vite": "4.2.1",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"@tanstack/react-table": "8.21.3",
"axios": "1.13.6",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"dayjs": "1.11.20",
"i18next": "25.8.18",
"i18next-browser-languagedetector": "8.2.1",
"lodash": "4.17.23",
"lucide-react": "0.577.0",
"radix-ui": "1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "7.71.2",
"react-i18next": "16.5.8",
"react-router-dom": "7.13.1",
"react-syntax-highlighter": "16.1.1",
"recharts": "3.8.0",
"shadcn": "4.0.8",
"tailwind-merge": "3.5.0",
"tailwindcss": "4.2.1",
"tw-animate-css": "1.4.0",
"uuid": "13.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@chromatic-com/storybook": "5.0.1",
"@eslint/js": "9.39.2",
"@storybook/addon-docs": "10.2.19",
"@storybook/addon-onboarding": "10.2.19",
"@storybook/addon-themes": "10.2.19",
"@storybook/react-vite": "10.2.19",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/eslint__js": "8.42.3",
"@types/lodash": "4.17.24",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "15.5.13",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-v8": "4.1.0",
"@vitest/ui": "4.1.0",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-storybook": "10.2.19",
"globals": "17.4.0",
"husky": "9.1.7",
"jsdom": "28.1.0",
"msw": "2.12.10",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"storybook": "10.2.19",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vite": "7.3.1",
"vitest": "4.1.0"
}
}