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
|
{
"name": "opendc-frontend",
"version": "0.1.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-frontend/issues",
"email": "opendc@atlarge-research.com"
},
"author": "Georgios Andreadis <g.andreadis@atlarge-research.com> (http://gandreadis.com/)",
"license": "MIT",
"private": true,
"proxy": "http://localhost:8081",
"dependencies": {
"approximate-number": "^2.0.0",
"classnames": "^2.2.5",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"konva": "^1.7.2",
"lint-staged": "^4.3.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.8.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.0.0",
"react-fontawesome": "^1.6.1",
"react-google-login": "^3.0.2",
"react-konva": "^1.5.7-beta",
"react-redux": "^5.0.5",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.14",
"react-shortcuts": "^2.0.0",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"socket.io-client": "^2.0.4",
"svgsaver": "^0.9.0",
"victory": "^0.24.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
|