-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.21 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
{
"name": "@dsys/multi-contracts",
"version": "1.0.0",
"main": "index.js",
"author": "Alex Kern <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "truffle develop",
"test": "truffle test",
"watch": "nodemon -e js,sol --ignore build --watch contracts --watch test -x 'truffle test || exit 1'",
"compile": "truffle compile",
"migrate": "truffle migrate --reset --compile-all",
"migrate-rinkeby": "truffle migrate --reset --compile-all --network rinkeby",
"migrate-mainnet": "truffle migrate --compile-all --network mainnet",
"lint": "eslint '**/*.js' && solium -d contracts/",
"fix": "eslint --fix '**/*.js' && solium --fix -d contracts/",
"precommit": "eslint '**/*.js' && solium -d contracts/"
},
"dependencies": {
"openzeppelin-solidity": "1.9.0",
"solidity-sigutils": "^1.0.1"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.1",
"eth-gas-reporter": "^0.1.2",
"ganache-cli": "^6.1.3",
"husky": "^0.14.3",
"nodemon": "^1.17.5",
"prettier": "^1.13.7",
"solium": "^1.1.7",
"truffle": "^4.1.13",
"truffle-privatekey-provider": "^0.0.6"
}
}