2023-02-17 17:00:32 +08:00
|
|
|
{
|
|
|
|
"name": "next-app",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
2023-02-17 17:18:28 +08:00
|
|
|
"lint": "next lint",
|
|
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
|
|
"prepare": "husky install"
|
2023-02-17 17:00:32 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-18 16:02:51 +08:00
|
|
|
"@emotion/react": "^11.10.6",
|
|
|
|
"@emotion/styled": "^11.10.6",
|
|
|
|
"@fontsource/roboto": "^4.5.8",
|
|
|
|
"@mui/icons-material": "^5.11.9",
|
|
|
|
"@mui/material": "^5.11.9",
|
2023-02-17 17:00:32 +08:00
|
|
|
"@next/font": "13.1.6",
|
2023-02-19 13:40:29 +08:00
|
|
|
"axios": "^1.3.3",
|
2023-02-19 12:10:20 +08:00
|
|
|
"formik": "^2.2.9",
|
2023-02-20 15:12:55 +08:00
|
|
|
"http-status": "^1.6.2",
|
2023-02-17 17:18:28 +08:00
|
|
|
"next": "13.1.6",
|
|
|
|
"react": "18.2.0",
|
2023-02-19 12:10:20 +08:00
|
|
|
"react-dom": "18.2.0",
|
2023-02-20 23:49:26 +08:00
|
|
|
"react-toastify": "^9.1.1",
|
2023-02-20 16:50:36 +08:00
|
|
|
"swr": "^2.0.3",
|
2023-02-19 12:10:20 +08:00
|
|
|
"yup": "^1.0.0"
|
2023-02-17 17:18:28 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-17 17:00:32 +08:00
|
|
|
"@types/node": "18.13.0",
|
|
|
|
"@types/react": "18.0.28",
|
|
|
|
"@types/react-dom": "18.0.11",
|
2023-02-17 17:18:28 +08:00
|
|
|
"eslint": "^8.34.0",
|
|
|
|
"eslint-config-next": "^13.1.6",
|
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"husky": "^8.0.0",
|
|
|
|
"lint-staged": "^13.1.2",
|
|
|
|
"prettier": "2.8.4",
|
|
|
|
"typescript": "^4.9.5"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
|
2023-02-17 17:00:32 +08:00
|
|
|
}
|
|
|
|
}
|