-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "npx prettier --write",
"mock": "json-server --watch db.json --port 3001"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.5",
"@mui/x-charts": "^6.0.0-alpha.9",
"@mui/x-date-pickers": "^6.11.2",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-table": "^8.10.7",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"dayjs": "^1.11.9",
"formik": "^2.4.3",
"json-server": "^0.17.4",
"next": "13.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^6.0.0",
"prettier": "3.0.2",
"typescript": "^5.1.6"
}
}