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
|
{
"name": "opendc-frontend",
"version": "3.0.0",
"description": "The user-facing component of the OpenDC stack, allowing users to build and interact with their own (virtual) datacenters.",
"keywords": [
"opendc",
"simulation",
"datacenter",
"frontend"
],
"homepage": "http://opendc.org",
"bugs": {
"url": "https://github.com/atlarge-research/opendc/issues",
"email": "opendc@atlarge-research.com"
},
"author": "OpenDC Maintainers <opendc@atlarge-research.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.12.0",
"@patternfly/react-core": "^4.250.1",
"@patternfly/react-icons": "^4.92.6",
"@patternfly/react-table": "^4.111.4",
"@patternfly/react-charts": "^6.94.7",
"@sentry/react": "^7.16.0",
"@sentry/tracing": "^7.16.0",
"clsx": "^1.2.1",
"immer": "^9.0.16",
"konva": "^8.3.13",
"mathjs": "^11.3.2",
"next": "^13.0.0",
"next-global-css": "^1.3.1",
"normalizr": "^3.6.2",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^3.4.7",
"react-konva": "^18.2.3",
"react-query": "^3.39.2",
"react-redux": "^8.0.4",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.1",
"redux-thunk": "^2.4.1",
"svgsaver": "^0.9.0",
"use-resize-observer": "^9.0.2",
"uuid": "^9.0.0",
"victory-errorbar": "^36.6.8"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.0"
},
"scripts": {
"format": "prettier --write src",
"precommit": "lint-staged",
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "next start",
"export": "next export -o build/export"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
|