-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathpackage.json
38 lines (38 loc) · 984 Bytes
/
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
{
"name": "nextjs",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.5",
"@mui/icons-material": "6.0.1",
"@mui/material": "6.0.1",
"@mui/system": "6.0.1",
"@mui/x-date-pickers": "7.17.0",
"eslint": "^8",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.48.2",
"react-hook-form-mui": "portal:../../packages/rhf-mui"
},
"devDependencies": {
"@next/bundle-analyzer": "latest",
"@types/eslint": "^8",
"@types/react": "latest",
"@types/react-dom": "latest",
"cross-env": "latest",
"eslint-config-next": "14.2.4",
"typescript": "5.5.3"
}
}