-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.89 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
{
"name": "cha-call_front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"check-all": "pnpm type-check && pnpm lint && pnpm format:check",
"fix-all": "pnpm type-check && pnpm lint:fix && pnpm format",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_b45a4ae4e58f49f",
"swagger-typescript-api": "swagger-typescript-api generate -p http://52.79.221.101:8000/v3/api-docs -r -o ./apis --modular -d --extract-request-body --extract-response-body --extract-response-error --axios --clean-output",
"update-icon-ids": "tsx src/shared/utils/extract-icon-ids.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.1",
"@tailwindcss/vite": "^4.1.12",
"@tanstack/react-query": "^5.85.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"jotai": "^2.15.0",
"lodash": "^4.17.21",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-intersection-observer": "^9.16.0",
"react-mobile-picker": "^1.2.0",
"react-router-dom": "^7.8.2",
"react-toastify": "^11.0.5",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.8"
},
"devDependencies": {
"@chromatic-com/storybook": "4.1.1",
"@eslint/js": "^9.33.0",
"@storybook/addon-a11y": "9.1.3",
"@storybook/addon-docs": "9.1.3",
"@storybook/addon-vitest": "9.1.3",
"@storybook/react-vite": "9.1.3",
"@tailwindcss/postcss": "^4.1.12",
"@tanstack/eslint-plugin-query": "^5.83.1",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"chromatic": "^13.1.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "9.1.3",
"globals": "^16.3.0",
"playwright": "^1.55.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"storybook": "9.1.3",
"swagger-typescript-api": "13.2.7",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4"
}
}