-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "nextjs-with-typescript",
"version": "5.0.0",
"private": true,
"scripts": {
"dev": "sudo next dev",
"lint": "sudo next lint",
"build": "sudo next build",
"start": "sudo next start",
"export": "sudo next export",
"dev80": "sudo next dev -p 80",
"start80": "sudo next start -p 80",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/joy": "^5.0.0-alpha.61",
"@mui/material": "latest",
"@next/font": "latest",
"@types/chart.js": "^2.9.37",
"@types/d3": "^7.4.0",
"@types/prismjs": "^1.26.0",
"chart.js": "^4.2.0",
"d3": "^7.8.2",
"datastructures-js": "^12.0.0",
"dotenv": "^16.0.3",
"markdown-to-jsx": "^7.1.8",
"next": "latest",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^10.0.0",
"prismjs": "^1.29.0",
"react": "latest",
"react-chartjs-2": "^5.2.0",
"react-dom": "latest",
"react-icons": "^4.7.1",
"react-p5": "^1.3.33",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-syntax-highlighter": "^15.5.6",
"autoprefixer": "^10.4.13",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-nesting": "^10.2.0",
"tailwindcss": "^3.2.4",
"typescript": "latest"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}