-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.65 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "idr-web",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"format": "prettier . --cache",
"format:ci": "prettier . --check",
"format:fix": "pnpm format --write",
"format:check": "pnpm format --check",
"lint": "eslint \"src/**/*.{ts,tsx}\" --cache --max-warnings 0",
"lint:ci": "eslint \"src/**/*.{ts,tsx}\" --max-warnings 0",
"lint:fix": "pnpm lint --fix",
"lint:check": "pnpm lint",
"type:check": "tsc --noEmit",
"lint:staged": "lint-staged",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build -o docs-build",
"seed:mock": "node ./scripts/seed/index.mjs"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-table": "^8.20.5",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.453.0",
"react": "^18.3.1",
"react-day-picker": "8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.27.0",
"tailwind-merge": "^2.5.4",
"validator": "^13.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@faker-js/faker": "^9.0.3",
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-themes": "^8.3.6",
"@storybook/preview-web": "^7.6.17",
"@storybook/react": "^8.3.6",
"@storybook/react-vite": "^8.3.6",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@tanstack/react-query-devtools": "^5.59.15",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"commitlint": "^19.5.0",
"eslint": "^9.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"eslint-plugin-storybook": "^0.9.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"msw": "^2.4.11",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"storybook": "^8.3.6",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm lint:check"
],
"*.{json,js,jsx,ts,tsx,htm,html,md}": "pnpm format:check"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.8.2"
},
"msw": {
"workerDirectory": [
"public"
]
}
}