-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.77 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.77 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
85
86
87
88
89
90
91
92
93
94
{
"name": "sofa",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.19.0",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --plugin=@trivago/prettier-plugin-sort-imports --config .prettierrc --write \"src/**/*.{js,jsx,ts,tsx}\"",
"chromatic": "node scripts/run-chromatic.js"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.6",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-slot": "^1.2.4",
"@reactuses/core": "^6.1.5",
"@sentry/nextjs": "^10",
"@stomp/stompjs": "^7.2.1",
"@tanstack/react-query": "^5.75.7",
"@tanstack/react-virtual": "^3.13.23",
"axios": "^1.9.0",
"cheerio": "^1.1.2",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"import-in-the-middle": "^2.0.6",
"next": "16.0.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.68.0",
"require-in-the-middle": "^8.0.1",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^3.1.1",
"zod": "^4.1.13",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3",
"@storybook/addon-vitest": "^10.1.4",
"@storybook/nextjs": "^10.1.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/browser": "^3.1.3",
"eslint": "^9.32.0",
"eslint-config-next": "15.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^10.1.4",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint-plugin-validate-filename": "^1.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"storybook": "^10.1.4",
"tailwindcss": "^4.1.17",
"typescript": "^5",
"vite": "^7.2.6",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.1.3"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}