-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.23 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
{
"name": "my-react-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{css,json,html}": "prettier --check"
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"@sentry/nextjs": "8",
"@sentry/react": "^7.107.0",
"@sentry/tracing": "^7.107.0",
"@stomp/stompjs": "^7.0.0",
"@suspensive/react": "^2.0.1",
"@suspensive/react-query": "^2.0.0",
"@tanstack/react-query": "^5.37.1",
"@toss/use-overlay": "^1.3.8",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"jotai": "^2.6.4",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.330.0",
"next": "^14.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-masonry-css": "^1.0.16",
"react-toastify": "^10.0.4",
"sockjs-client": "^1.6.1",
"swiper": "^11.0.7",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@next/eslint-plugin-next": "^14.2.5",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.24.7",
"@types/gtag.js": "^0.0.19",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.17",
"daisyui": "^4.6.2",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"msw": "^2.4.2",
"postcss": "^8.4.35",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}