-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.08 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.08 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
{
"name": "react-starter-kit",
"description": "Welcome to the LEANSTACKS React starter kit. This project provides a template to kickstart React single-page applications utilizing a curated Technology Stack for optimal testability, maintainability, and operability.",
"keywords": [
"react"
],
"author": "LeanStacks",
"license": "MIT",
"version": "0.5.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/leanstacks/react-starter-kit.git"
},
"scripts": {
"clean": "rimraf coverage dist storybook-static",
"dev": "vite",
"build": "tsc && vite build",
"build:storybook": "storybook build",
"lint": "eslint --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.all=false",
"test:ci": "vitest run --coverage --silent"
},
"dependencies": {
"@codesandbox/sandpack-react": "2.20.0",
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-regular-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@hookform/resolvers": "4.1.3",
"@react-spring/web": "9.7.5",
"@tailwindcss/vite": "4.0.12",
"@tanstack/react-query": "5.67.2",
"@tanstack/react-query-devtools": "5.67.2",
"@tanstack/react-table": "8.21.2",
"axios": "1.8.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"i18next": "24.2.2",
"i18next-browser-languagedetector": "8.0.4",
"lodash": "4.17.21",
"qs": "6.14.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-i18next": "15.4.1",
"react-router-dom": "7.3.0",
"recharts": "2.15.1",
"tailwind-merge": "3.0.2",
"tailwindcss": "4.0.12",
"uuid": "11.1.0",
"yup": "1.6.1"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.5",
"@eslint/js": "9.22.0",
"@storybook/addon-essentials": "8.6.4",
"@storybook/addon-interactions": "8.6.4",
"@storybook/addon-onboarding": "8.6.4",
"@storybook/addon-themes": "8.6.4",
"@storybook/blocks": "8.6.4",
"@storybook/react": "8.6.4",
"@storybook/react-vite": "8.6.4",
"@storybook/test": "8.6.4",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/eslint__js": "8.42.3",
"@types/lodash": "4.17.16",
"@types/qs": "6.9.18",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.8",
"eslint": "9.22.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"eslint-plugin-storybook": "0.11.4",
"globals": "16.0.0",
"jsdom": "26.0.0",
"msw": "2.7.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.11",
"rimraf": "6.0.1",
"storybook": "8.6.4",
"typescript": "5.7.3",
"typescript-eslint": "8.26.0",
"vite": "6.2.1",
"vitest": "3.0.8"
}
}