-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "xplore",
"version": "0.0.1",
"description": "A block explorer for local Ethereum testnets",
"homepage": "https://github.com/DAVFoundation/xplore#readme",
"bugs": {
"url": "https://github.com/DAVFoundation/xplore/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DAVFoundation/xplore.git"
},
"license": "MIT",
"author": "Tal Ater <[email protected]>",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"test": "jest",
"test:watch": "npm test -- --watch --watchAll"
},
"dependencies": {
"acorn": "^6.1.1",
"ajv": "^6.10.0",
"ajv-keywords": "^3.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.1.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^5.15.1",
"eslint-config-google": "^0.12.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"mini-css-extract-plugin": "^0.5.0",
"prettier": "^1.16.4",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-actions": "^2.4.0",
"redux-devtools-extension": "^2.13.5",
"redux-promise-middleware": "^5.1.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"web3": "^1.0.0-beta.34",
"webpack": "^4.29.5",
"webpack-dev-server": "^3.2.0",
"webpack-merge": "^4.1.3"
}
}