-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.9 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
92
93
94
95
96
97
98
99
{
"name": "myapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"postinstall": "husky install"
},
"dependencies": {
"@aws-amplify/adapter-nextjs": "^1.0.8",
"@ducanh2912/next-pwa": "^10.2.2",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.3",
"@material-tailwind/react": "^2.1.8",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.1.0",
"@react-oauth/google": "^0.12.1",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.14.2",
"@tanstack/react-query-devtools": "^5.14.2",
"@types/mdx": "^2.0.10",
"axios": "^1.6.2",
"date-fns": "^3.2.0",
"firebase": "^10.7.1",
"framer-motion": "^10.17.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"next": "14.0.4",
"nookies": "^2.5.2",
"react": "^18",
"react-cookie": "^7.0.1",
"react-day-picker": "^8.10.0",
"react-dom": "^18",
"react-icons": "^4.12.0",
"react-infinite-scroll-component": "^6.1.0",
"react-infinite-scroller": "^1.2.6",
"react-query": "^3.39.3",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"sharp": "^0.33.2",
"sockjs-client": "^1.6.1",
"swiper": "^11.0.5",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@playwright/test": "^1.41.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-infinite-scroller": "^1.2.5",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"autoprefixer": "^10.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdom-testing-mocks": "^1.11.0",
"next-router-mock": "^0.9.11",
"postcss": "^8",
"prettier": "^3.1.1",
"react-hook-form": "^7.49.3",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}