-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.39 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
{
"name": "circles-dashboard",
"version": "0.5.0",
"description": "Status dashboard and network explorer for Circles",
"main": "src/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production && cp 404.html build",
"clear": "rimraf ./build",
"lint": "eslint --ignore-path .gitignore ./",
"serve": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CirclesUBI/circles-dashboard.git"
},
"private": true,
"contributors": [
"adzialocha"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/CirclesUBI/circles-dashboard/issues"
},
"homepage": "https://github.com/CirclesUBI/circles-dashboard#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"truffle": "^5.1.50",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@circles/analysis": "^0.3.2",
"@circles/core": "^1.0.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@nivo/bar": "^0.63.1",
"@nivo/line": "^0.63.1",
"clsx": "^1.1.1",
"immutability-helper": "^3.1.1",
"isomorphic-fetch": "^3.0.0",
"luxon": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-force-graph-2d": "^1.18.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-sizeme": "^2.6.12",
"redux": "^4.0.5",
"redux-create-action-types": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"use-debounce": "^3.4.3",
"web3": "^1.3.0"
}
}