-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "offlinetx",
"version": "0.0.0",
"description": "How to build Ethereum transaction client side",
"main": "index.js",
"jsnext:main": "es6/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "npm run build && npm run build-es6",
"build-es6": "rimraf 'es6' && babel --presets react,stage-1 --plugins transform-decorators-legacy,transform-object-assign,array-includes src -d es6",
"clean": "rimraf '*(es6|dist)'",
"build": "webpack",
"start": "webpack-dev-server"
},
"author": "",
"license": "MIT",
"dependencies": {
"elliptic": "^6.3.2",
"es6-promise": "^4.0.5",
"ethereumjs-abi": "^0.6.4",
"ethers-wallet": "^1.0.8",
"json-loader": "^0.5.4",
"mobx": "^2.0.0",
"mobx-react": "^3.0.0",
"react": "^15.0.0",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.0.0",
"web3": "^0.17.0-beta"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.21.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-array-includes": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.0.0",
"babel-plugin-transform-object-assign": "^6.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.0.0",
"babel-preset-react-hmre": "^1.0.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.0.0",
"clean-webpack-plugin": "^0.1.0",
"css-loader": "^0.23.0",
"eslint": "^3.1.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^2.0.0",
"eslint-plugin-react": "^5.1.0",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.15.0",
"npm-install-webpack-plugin": "^4.0.0",
"rimraf": "^2.5.0",
"sleep": "^5.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.0",
"webpack": "^1.12.0",
"webpack-async-await": "^1.1.0",
"webpack-dev-server": "^1.14.0",
"webpack-merge": "^0.14.0",
"eslint": "^3.12.2",
"eslint-plugin-jsx-a11y": "^2.2.3"
}
}