-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "building-editor-2d",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc --noEmit",
"test": "jest",
"cibuild": "next build && next export"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.6.2",
"@emotion/react": "^11.6.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "^5.1.1",
"@mui/styles": "^5.0.1",
"@mui/x-data-grid": "^5.0.1",
"@sentry/nextjs": "^7.2.0",
"axios": "^0.24.0",
"classnames": "^2.2.6",
"date-fns": "^2.12.0",
"form-data": "^4.0.0",
"formidable": "v3",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.2",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"mathjs": "^9.4.4",
"mdast-util-to-string": "^1.1.0",
"mui-color": "^2.0.0-beta.2",
"next": "^12.0.7",
"next-pwa": "^5.4.1",
"next-seo": "^4.26.0",
"p5": "^1.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-datasheet": "^1.4.9",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^17.0.2",
"react-google-charts": "^3.0.15",
"react-hook-form": "^7.0.3",
"react-markdown": "^5.0.3",
"react-material-ui-carousel": "^3.1.0",
"react-syntax-highlighter": "^15.4.3",
"reconnecting-websocket": "^4.4.0",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"sitemap": "^7.0.0",
"swr": "^0.5.5",
"three": "^0.128.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/formidable": "^1.2.4",
"@types/github-slugger": "^1.3.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.162",
"@types/node": "^13.11.0",
"@types/p5": "^1.3.0",
"@types/react": "^17.0.14",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/three": "^0.128.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.30.0",
"eslint-config-next": "^12.0.4",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.5.1",
"next-sitemap": "^1.6.95",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}