-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.56 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
{
"name": "study-mos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.mjs",
"dev:https": "NODE_ENV=development node server.mjs",
"build": "next build",
"start": "NODE_ENV=production node server.mjs",
"start:https": "NODE_ENV=production node server.mjs",
"lint": "next lint",
"lint:fix": "next lint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"postinstall": "husky install",
"pre-commit": "lint-staged",
"zip": "next build && zip -r build.zip .next package.json public"
},
"dependencies": {
"@heroui/tooltip": "^2.2.14",
"@hookform/devtools": "^4.3.3",
"@stomp/stompjs": "^7.1.1",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@uiw/react-md-editor": "^4.0.5",
"autoprefixer": "^10.4.20",
"axios": "^1.8.4",
"bootstrap-icons": "^1.11.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.1.0",
"highlight.js": "^11.11.1",
"markdown-to-txt": "^2.0.1",
"next": "15.2.3",
"next-mdx-remote-client": "2",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.1",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@eslint/eslintrc": "^3",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-links": "^8.5.2",
"@storybook/addon-onboarding": "^8.5.2",
"@storybook/blocks": "^8.5.2",
"@storybook/nextjs": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/test": "^8.5.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"storybook": "^8.5.2",
"tailwindcss": "^3.4.17",
"typescript": "^5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended",
"plugin:storybook/recommended",
"plugin:storybook/recommended"
]
},
"type": "module"
}