-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) Β· 2.72 KB
/
package.json
File metadata and controls
96 lines (96 loc) Β· 2.72 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
95
96
{
"name": "dnd-13th-8-frontend",
"private": true,
"version": "2.0.0",
"type": "module",
"engines": {
"node": "22.12.0"
},
"volta": {
"node": "22.12.0"
},
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,jsx,json,md,html,css}": [
"prettier --write"
]
},
"dependencies": {
"@stomp/stompjs": "^7.1.1",
"@tanstack/react-query": "^5.84.2",
"@vercel/analytics": "^1.6.1",
"axios": "^1.11.0",
"embla-carousel": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.12",
"html-to-image": "^1.11.13",
"lottie-react": "^2.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^10.0.3",
"react-router-dom": "^7.8.0",
"react-youtube": "^10.1.0",
"sockjs-client": "^1.6.1",
"styled-components": "^6.1.19",
"styled-reset": "^4.5.2",
"uuid": "^11.1.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.30.1",
"@storybook/addon-a11y": "^9.1.1",
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-onboarding": "^9.1.1",
"@storybook/addon-vitest": "^9.1.1",
"@storybook/react": "^9.1.2",
"@storybook/react-vite": "^9.1.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/sockjs-client": "^1.5.4",
"@types/youtube": "^0.1.2",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"chromatic": "^13.1.3",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"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-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^9.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.3.0",
"husky": "9.1.7",
"lint-staged": "^16.1.2",
"playwright": "^1.54.2",
"prettier": "^3.6.2",
"storybook": "^9.1.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4"
}
}