generated from codeclubvn/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.28 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
92
93
94
95
96
{
"name": "react-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host localhost --port 3000",
"prebuild": "npm run convert-svg",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier -c --write \"*/**\"",
"postinstall": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"convert-svg": "mkdirp -p src/svgs && svgr --out-dir src/svgs -- src/assets/svg"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.14.7",
"@mui/x-data-grid": "^6.13.0",
"@mui/x-data-grid-generator": "^6.13.0",
"@mui/x-date-pickers": "^6.12.1",
"@tailwindcss/forms": "^0.5.4",
"@tanstack/react-query": "^4.35.3",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"immer": "^10.0.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.263.1",
"mkdirp": "^3.0.1",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.45.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.21.3",
"recharts": "^2.8.0",
"swr": "^2.2.0",
"tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.13",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-vite": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@svgr/cli": "^8.1.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.14",
"babel-plugin-jsx-remove-attributes": "^1.0.0",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"storybook": "^7.1.1",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.1.6",
"vite": "^5.0.10"
},
"lint-staged": {
"**/*.{json,css,scss,md}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}