-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.55 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
{
"name": "truffle-init-webpack",
"version": "0.0.1",
"description": "Frontend example using truffle v3",
"scripts": {
"lint": "eslint ./",
"build": "webpack",
"dev": "NODE_ENV=development webpack-dev-server --progress --colors --content-base build/ --watch --hot --inline --config webpack.config.js",
"testrpc:start": "./runtestrpc.sh",
"testrpc:install": "npm install -g ethereumjs-testrpc",
"truffle:install": "npm install -g truffle",
"bridge:deploy": "echo 'Deploying a new ethereum-bridge! Do not do it if you already deployed it, use npm run bridge instead' && cd ethereum-bridge && n use 6.9.1 bridge -H localhost:8545 -a 0 --dev --key ../d912aecb07e9f4e1ea8e6b4779e7fb6aa1c3e4d.json --non-interactive",
"bridge:start": "echo 'Reconnecting to an already deployed bridge instance at deterministic OAR. If you run it first time on testrpc / private chain then use npm run bridge:deploy first.' && cd ethereum-bridge && n use 6.9.1 bridge -H localhost:8545 -a 0 --dev --key ../d912aecb07e9f4e1ea8e6b4779e7fb6aa1c3e4d.json --non-interactive --oar 0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475",
"bridge:latest": "cd ethereum-bridge && n use 6.9.1 bridge --instance latest",
"bridge:install": "cd ethereum-bridge && npm install"
},
"author": "DECENT",
"license": "GPL-3",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"bignumber.js": "^4.0.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.4",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.3.1",
"html-webpack-plugin": "^2.29.0",
"json-loader": "^0.5.4",
"truffle-contract": "^1.1.11",
"web3": "^0.18.4",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"file-loader": "^0.11.2",
"file-saver": "^1.3.3",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"moment-countdown": "0.0.3",
"parse": "^1.10.0",
"secure-random": "^1.1.1",
"style-loader": "^0.13.2",
"svg-loader": "0.0.2",
"url-loader": "^0.5.9"
}
}