-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"name": "act-of-independence",
"version": "1.1.0",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:contract": "solium -d contracts/",
"lint:contract:fix": "solium -d contracts/ --fix",
"compile:local": "rm -rf build/ && truffle compile --network development",
"coverage": "./node_modules/.bin/solidity-coverage",
"rpc": "ganache-cli --defaultBalanceEther 1000000 --gasPrice 1 --gasLimit 0xfffffffffff --seed --networkId 336",
"rpc:rinkeby": "geth --datadir=~/.ethereum --rinkeby --rpc --rpcapi db,eth,net,web3,personal",
"test": "truffle test",
"copy": "cp -R build/contracts/*.json app/src/contracts/"
},
"repository": {
"type": "git",
"url": "https://github.com/powerpiper/actofindependence.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"lithuania",
"independence"
],
"bugs": {
"url": "https://github.com/powerpiper/actofindependence/issues"
},
"author": "Tadas Talaikis, PowerPiper Team <[email protected]>",
"license": "GPLv3",
"dependencies": {
"amd": "0.0.0",
"chalk": "^2.3.2",
"options": "0.0.6",
"truffle": "^4.1.5",
"truffle-contract": "^3.0.4",
"truffle-hdwallet-provider": "0.0.3",
"webpack": "^4.42.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.22.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^3.0.1",
"ganache-cli": "^6.1.0",
"jest": "^25.1.0",
"solidity-coverage": "^0.4.15",
"solium": "^1.1.6",
"truffle-hdwallet-provider-privkey": "^0.2.0"
}
}