UNPKG

784 BJSONView Raw
1{
2 "name": "subscription",
3 "version": "1.0.0",
4 "license": "MIT",
5 "dependencies": {
6 "browseth": "^0.0.54",
7 "react": "^16.4.1",
8 "react-dom": "^16.4.1",
9 "react-scripts": "1.1.4",
10 "xmlhttprequest": "^1.8.0"
11 },
12 "scripts": {
13 "start": "react-scripts start",
14 "build": "react-scripts build",
15 "test": "react-scripts test --env=jsdom",
16 "eject": "react-scripts eject",
17 "compile": "solc -o build --gas --abi --bin contracts/**.sol ./=contracts --allow-paths contracts --overwrite --optimize",
18 "postcompile": "for old in ./build/*.abi; do mv $old ./build/`basename $old .abi`.json; done",
19 "geth": "geth -datadir tmp/geth -dev -networkid 1 -gasprice 1 -rpc console --rpccorsdomain='*'",
20 "deploy": "cd src && node deploytoken.js"
21 }
22}