-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "twitter-clone-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier src/**/*.tsx --write"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^3.1.0",
"@mui/material": "^5.12.1",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "18.0.11",
"axios": "^1.3.5",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"jwt-decode": "^3.1.2",
"next": "13.3.0",
"next-react-svg": "1.2.0",
"next-seo": "^6.0.0",
"react": "18.2.0",
"react-datepicker": "^4.16.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-input": "^4.1.3",
"react-intersection-observer": "^9.5.2",
"react-query": "^3.39.3",
"sharp": "^0.32.5",
"typescript": "5.0.4",
"yup": "^1.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7"
}
}