-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.45 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
{
"name": "beside_frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --verbose",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@aws-amplify/auth": "^5.4.0",
"@headlessui/react": "^1.7.15",
"@hookform/resolvers": "^3.1.0",
"@sentry/nextjs": "^7.51.2",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^4.29.5",
"amazon-cognito-identity-js": "^6.2.0",
"autoprefixer": "10.4.14",
"aws-amplify": "^5.2.5",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"immer": "^10.0.2",
"next": "^13.4.2",
"postcss": "8.4.23",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.10.1",
"react-toastify": "^9.1.3",
"recoil": "^0.7.7",
"sockjs-client": "^1.6.1",
"swiper": "^9.4.1",
"tailwind-merge": "^1.13.1",
"tailwindcss": "3.3.2",
"yup": "^1.1.1"
},
"devDependencies": {
"@storybook/addon-essentials": "7.0.11",
"@storybook/addon-interactions": "7.0.11",
"@storybook/addon-links": "7.0.11",
"@storybook/blocks": "7.0.11",
"@storybook/nextjs": "7.0.11",
"@storybook/react": "7.0.11",
"@storybook/testing-library": "0.0.14-next.2",
"@svgr/webpack": "^8.0.1",
"@tanstack/react-query-devtools": "^4.29.6",
"@types/http-proxy-middleware": "^1.0.0",
"@types/node": "^20.1.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/sockjs-client": "^1.5.1",
"@types/stompjs": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.12",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"storybook": "7.0.11",
"storybook-addon-next": "^1.8.0",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}