-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prettier:fix": "prettier --write components/ models/ pages/ utils/ contexts/",
"lint:fix": "eslint components/ models/ pages/ utils/ contexts/ --fix",
"lint:all": "yarn prettier:fix && yarn lint:fix",
"type-check": "tsc"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.4",
"mongoose": "^6.1.10",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.30.0",
"swr": "^1.3.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/validator": "^13.7.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^5.4.2"
}
}