-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.93 KB
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
{
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./src --config ./eslint.config.mjs",
"lint:fix": "eslint --fix ./src --config ./eslint.config.mjs"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.4.0",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.2",
"@mui/x-date-pickers": "^9.6.0",
"@next/mdx": "^16.2.9",
"date-fns": "^4.4.0",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"sugar-high": "^1.2.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@hookform/devtools": "4.4.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/postcss": "4.3.1",
"@tailwindcss/typography": "0.5.19",
"@types/autosuggest-highlight": "3.2.3",
"@types/lodash": "4.17.23",
"@types/marked": "4.3.2",
"@types/node": "25.2.2",
"@types/prismjs": "1.26.5",
"@types/qs": "6.14.0",
"@types/react": "19.2.13",
"@types/react-autosuggest": "10.1.11",
"@types/react-dom": "19.2.3",
"@types/styled-components": "5.1.36",
"@types/stylis": "4.2.7",
"@typescript-eslint/eslint-plugin": "8.54.0",
"autoprefixer": "10.4.24",
"eslint": "9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.0",
"eslint-plugin-unused-imports": "4.3.0",
"postcss": "8.5.10",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"promise": "8.3.0",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"typescript-plugin-css-modules": "5.2.0"
}
}