-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@types/sockjs-client": "^1.5.4",
"autosize": "^6.0.1",
"axios": "^1.6.0",
"classnames": "^2.3.2",
"immer": "^10.0.3",
"next": "14.0.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"react-js-pagination": "^3.0.3",
"react-query": "^3.39.3",
"sass": "^1.69.5",
"sockjs-client": "^1.6.1",
"zustand": "^4.4.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-onboarding": "^1.0.9",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.6.4",
"@storybook/builder-webpack5": "^7.6.4",
"@storybook/manager-webpack5": "6.5.0-rc.1",
"@storybook/nextjs": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/test": "^7.6.4",
"@types/autosize": "^4.0.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-js-pagination": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"storybook": "^7.6.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5"
},
"packageManager": "[email protected]"
}