-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 3.07 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
89
90
91
92
93
{
"name": "eth2stats-dashboard",
"version": "0.0.1",
"description": "Eth2stats dashboard",
"main": "index.js",
"repository": "github.com/ConsenSys/eth2stats-server",
"author": "Casian Lacatusu",
"private": true,
"scripts": {
"build": "npm run clean && npm run build-js-prod",
"build-dev": "npm run clean && npm run build-js-dev",
"check-prod-bundle-size": "bundlesize -f \"dist/js/app.bundle.js\" -s 850kB -c none",
"clean": "rimraf ./dist",
"build-js-prod": "webpack --config=./webpack.config.prod.js",
"build-js-dev": "webpack --config=./webpack.config.dev.js",
"watch": "webpack-runner --config=./webpack.config.dev.js --watch",
"install-dev": "cd dev && npm install && cd ..",
"start": "cd dev && npm start && cd ..",
"test": "mocha",
"test-coverage": "nyc npm test"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/mocha": "^2.2.40",
"@types/node": "^8.10.18",
"@types/react": "^16.7.3",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-dom": "^16.0.9",
"@types/react-router-dom": "^5.1.3",
"@types/react-router-hash-link": "^1.2.0",
"@types/react-simple-maps": "^1.0.1",
"@types/react-tooltip": "^3.11.0",
"@types/react-transition-group": "^2.0.11",
"@types/webpack-env": "^1.13.0",
"autoprefixer": "^9.5.1",
"bundlesize": "github:siddharthkp/bundlesize#brotli-optional",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^3.4.2",
"esm": "^3.0.84",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.9",
"interpolate-html-plugin": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.6.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.14",
"style-loader": "^1.1.3",
"tailwindcss": "^1.0.5",
"ts-loader": "^4.4.2",
"ts-node": "^5.0.1",
"tsconfig-paths": "^3.4.2",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typemoq": "^2.1.0",
"typescript": "^3.7.5",
"typescript-tslint-plugin": "^0.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"d3-geo-projection": "^2.8.1",
"lodash": "^4.17.15",
"mobx": "^5.9.4",
"mobx-react": "^6.1.8",
"react": "16.8.6",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "16.8.6",
"react-router-dom": "^5.1.2",
"react-simple-maps": "^1.0.0-beta.0",
"react-tooltip": "^3.11.2",
"react-transition-group": "^2.4.0"
},
"optionalDependencies": {
"fsevents": "^2.1.2"
}
}