-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "digital-twin-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.10.8",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.15.2",
"@mui/styles": "^5.15.2",
"@mui/x-data-grid": "^5.17.26",
"@nivo/core": "^0.82.1",
"@nivo/line": "^0.80.0",
"@vertexvis/viewer-react": "^0.17.5",
"next": "12.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16",
"@types/react": "^17.0",
"@typescript-eslint/eslint-plugin": "^5.5",
"@typescript-eslint/parser": "^5.5",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0",
"eslint-config-prettier": "^8.3",
"eslint-plugin-react": "^7.27",
"eslint-plugin-react-hooks": "^4.3",
"eslint-plugin-simple-import-sort": "^7.0",
"prettier": "^2.5",
"tslib": "^2.3",
"typescript": "^4.5"
},
"scripts": {
"build": "next build",
"clean": "rm -rf .next/ node_modules/",
"dev": "next dev",
"format": "prettier --write './**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|html|css)'",
"lint": "next lint",
"start": "next start"
}
}