-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.08 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
87
88
89
90
91
{
"name": "reactjs-vite-tailwindcss-boilerplate",
"description": "This is a React + vite boilerplate to be used with Tailwindcss.",
"version": "0.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src --max-warnings=0",
"lint:css": "stylelint 'src/**/*.@(css|scss)'",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@tanstack/react-location": "^3.7.0",
"@tanstack/react-query": "^4.20.4",
"@tanstack/react-query-devtools": "^4.20.4",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.0.0-beta.19",
"@storybook/addon-actions": "^7.0.0-beta.19",
"@storybook/addon-essentials": "^7.0.0-beta.19",
"@storybook/addon-links": "^7.0.0-beta.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^7.0.0-beta.19",
"@storybook/react-vite": "^7.0.0-beta.19",
"@storybook/testing-react": "^2.0.0-next.0",
"@tanstack/react-location-devtools": "^3.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/regenerator-runtime": "^0.13.1",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.2",
"autoprefixer": "^10.4.13",
"esbuild-register": "^3.4.2",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"eslint-plugin-tailwindcss": "^3.7.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vitest": "^0.0.21",
"jest-extended": "^3.2.0",
"jest-watch-typeahead": "^2.2.1",
"jsdom": "^20.0.3",
"msw": "^0.49.2",
"msw-storybook-addon": "^1.6.3",
"postcss": "^8.4.20",
"prettier": "2.8.1",
"react-test-renderer": "^18.2.0",
"storybook": "^7.0.0-beta.19",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.26.2",
"vitest-axe": "^0.1.0"
},
"msw": {
"workerDirectory": "public"
}
}