-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "react-eth",
"version": "0.2.3",
"description": "Generate forms with contract's ABI.",
"main": "dist/index.js",
"scripts": {
"dist": "rm -rf ./dist && cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.dist.js",
"build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.prod.js",
"examples": "webpack-dev-server --config ./webpack.config.dev.js",
"lint": "eslint --config ./.eslintrc.json './src/*.js'",
"test": "jest --config jest.config.json",
"test:watch": "npm test -- --watch"
},
"repository": "git+ssh://[email protected]:cryptol0g1c/react-eth.git",
"keywords": [
"react",
"ethereum",
"solidity",
"abi"
],
"author": "Agustin Fiorenza",
"license": "MIT",
"bugs": {
"url": "https://github.com/cryptol0g1c/react-eth/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"ethereumjs-util": "^5.1.5",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-jsonschema-form": "^1.0.2",
"recompose": "^0.26.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.1.0",
"jest": "^23.6.0",
"react-json-view": "^1.16.1",
"terser-webpack-plugin": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}