-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "nextjs-with-typescript",
"version": "5.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "^11.9.0",
"@emotion/server": "latest",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.15.14",
"@mui/x-data-grid": "latest",
"@types/react-dom": "^18.0.0",
"apexcharts": "^3.35.0",
"d3-shape": "^3.1.0",
"next": "^14.1.4",
"node-fetch": "latest",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"readable-stream": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@types/d3-shape": "^3.0.2",
"@types/node": "latest",
"@types/react": "^18.0.1",
"eslint": "latest",
"eslint-config-next": "^14.1.4",
"typescript": "latest"
}
}