-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.75 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.75 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
{
"name": "thunderting",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "next dev ",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"deploy": "npx netlify deploy --prod"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@next/bundle-analyzer": "^15.2.1",
"@sentry/nextjs": "^9.9.0",
"@stomp/stompjs": "^7.0.1",
"@tanstack/react-query": "^5.66.5",
"@testing-library/jest-dom": "^6.6.3",
"@types/next-pwa": "^5.6.9",
"@types/react-datepicker": "^7.0.0",
"@uiw/react-md-editor": "^4.0.5",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"es-hangul": "^2.3.0",
"framer-motion": "^12.4.7",
"husky": "^9.1.7",
"immer": "^10.1.1",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"lottie-react": "^2.4.1",
"next": "15.1.6",
"next-pwa": "^5.6.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-confetti": "^6.4.0",
"react-datepicker": "^8.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^9.15.1",
"react-markdown": "^9.0.3",
"react-toastify": "^11.0.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sockjs-client": "^1.6.1",
"stompjs": "^2.3.3",
"tailwind-merge": "^3.0.1",
"ws": "^8.18.1",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"codecov": "^3.8.2",
"cypress": "^14.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^15.2.2",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}