forked from dnd-side-project/dnd-10th-1-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.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
{
"name": "dnd-10th-1-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@stackflow/core": "^1.0.10",
"@stackflow/plugin-basic-ui": "^1.5.2",
"@stackflow/plugin-renderer-basic": "^1.1.7",
"@stackflow/react": "^1.1.7",
"@tanstack/react-query": "^5.17.19",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"file-saver": "^2.0.5",
"framer-motion": "^11.0.5",
"lottie-react": "^2.4.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.321.0",
"next": "14.1.0",
"next-themes": "^0.2.1",
"react": "^18",
"react-bubble-ui": "^1.1.2",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"socket.io-client": "^4.7.4",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.1",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.8.9",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.10",
"@storybook/nextjs": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/test": "^7.6.10",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@testing-library/react": "^14.1.2",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"chromatic": "^10.3.1",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.14.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^7.6.10",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^1.2.1"
}
}