-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "seichi-portal-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"fmt": "prettier --check --log-level=warn './**/*.{ts,tsx,css}'",
"fmt:fix": "prettier --write --log-level=warn './**/*.{ts,tsx,css}'",
"postinstall": "typesync || :",
"pretty": "yarn lint:fix && yarn fmt:fix && yarn build"
},
"dependencies": {
"@azure/msal-browser": "^3.2.0",
"@azure/msal-node": "^2.6.4",
"@azure/msal-react": "^2.0.3",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@mui/material-nextjs": "^5.15.11",
"@mui/x-data-grid": "^6.12.1",
"browserslist": "^4.23.0",
"dayjs": "^1.11.9",
"fp-ts": "^2.16.8",
"msal-react": "^0.1.0",
"next": "13.5.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"swr": "^2.2.5",
"ts-pattern": "^5.0.6",
"zod": "^3.22.3"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/eslint": "8.44.3",
"@types/eslint-config-prettier": "^6.11.1",
"@types/node": "18.19.0",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "8.46.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.1",
"typescript": "5.1.6",
"typesync": "^0.11.1"
},
"volta": {
"node": "18.19.0",
"yarn": "1.22.19"
}
}