-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
88
{
"name": "cpu-load-monitoring",
"version": "1.0.0",
"description": "CPU load monitoring web application",
"main": "frontend/index.jsx",
"scripts": {
"front": "webpack-dev-server -d --hot --inline --progress --colors",
"back": "python3.7 backend/server.py",
"start": "concurrently --kill-others \"yarn front\" \"yarn back\"",
"build": "webpack --mode=production --progress --colors",
"stats": "webpack --json > stats.json",
"test:back": "export PYTHONPATH=. && python3.7 backend/tests/test_api.py",
"test:front": "jest"
},
"keywords": [
"React",
"webpack",
"Redux",
"Bable",
"ES6"
],
"author": "Domitille Dempuré",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime": "^7.8.3",
"@hot-loader/react-dom": "^16.11.0",
"babel-eslint": "10.0.3",
"babel-jest": "^26.6.3",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"compression-webpack-plugin": "3.1.0",
"concurrently": "5.1.0",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-plugin-react": "7.18.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"react-hot-loader": "4.12.19",
"react-test-renderer": "^17.0.1",
"style-loader": "0.23.1",
"url-loader": "2.1.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-hot-middleware": "2.25.0"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@instructure/uid": "^6.17.0",
"@material-ui/codemod": "4.5.0",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@material/typography": "4.0.0",
"@nivo/bar": "0.52.1",
"classnames": "2.2.6",
"connected-react-router": "6.7.0",
"dayjs": "1.9.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"fbjs": "1.0.0",
"fetch-mock": "^9.10.7",
"flexboxgrid": "6.3.1",
"history": "4.10.1",
"lodash": "4.17.19",
"prop-types": "15.7.2",
"react": "16.13.0",
"react-albus": "^2.0.0",
"react-dom": "16.13.0",
"react-flexbox-grid": "2.1.2",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"react-router-dom": "^5.1.2",
"react-select": "2.3.0",
"react-virtualized": "^9.21.2",
"redux": "4.0.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0"
}
}