-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
{
"name": "vite-react-ts-tailwind",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-query-devtools": "^4.35.3",
"axios": "^1.5.0",
"dayjs": "^1.11.9",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-use": "^17.4.0"
},
"devDependencies": {
"@storybook/addon-docs": "^7.4.2",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-mdx-gfm": "^7.4.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/react-vite": "^7.4.2",
"@storybook/testing-library": "0.0.14-next.2",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/lodash": "^4.14.198",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"jsdom": "^21.1.2",
"lint-staged": "^14.0.1",
"msw": "^1.3.1",
"postcss": "^8.4.29",
"prop-types": "^15.8.1",
"storybook": "^7.4.2",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.2.3",
"vite": "^4.4.9",
"vitest": "^0.29.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,less,styl}": [
"prettier --write",
"stylelint --fix"
]
}
}