forked from windingtree/vesting-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "vesting-contract",
"version": "1.0.0",
"description": "Token vesting contract",
"main": "index.js",
"scripts": {
"test": "truffle test",
"testnet": "scripts/run-testnet.sh",
"lint": "eslint test",
"deploy-local": "./node_modules/.bin/truffle migrate",
"deploy-mainnet": "./node_modules/.bin/truffle migrate --network mainnet --reset",
"deploy-ropsten": "./node_modules/.bin/truffle migrate --network ropsten --reset",
"contract-flattener": "node_modules/.bin/truffle-flattener contracts/BookingPoC.sol > build/BookingPocFlattened.sol"
},
"author": "Augusto Lemble <[email protected]>",
"license": "ISC",
"dependencies": {
"ethereumjs-abi": "^0.6.5",
"openzeppelin-solidity": "^1.12.0",
"truffle-flattener": "^1.2.6",
"truffle-hdwallet-provider": "0.0.6",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ganache-cli": "^6.1.8",
"truffle": "^4.1.14"
}
}