-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.32 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
{
"name": "p2p-lending",
"version": "1.0.0",
"description": "This repository hosts a variety of smart contracts for a DAO (Decentralized Autonomous Organisation) focussing on delivering a decentralized p2p-lending platform on the Ethereum Blockchain. This may very well develop into something completely different based on the direction taken by the DAO in the future. We are as excited as you are! ;-)",
"directories": {
"test": "test"
},
"dependencies": {
"truffle-hdwallet-provider": "^1.0.3",
"web3": "^1.0.0-beta.37"
},
"devDependencies": {
"ganache-cli": "^6.3.0",
"truffle": "^5.0.3"
},
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"migrate": "npm run migrate:ropsten",
"migrate:dev": "rm -rf build/ && truffle migrate --reset --compile-all --network development",
"migrate:devnet": "rm -rf build/ && truffle migrate --reset --compile-all --network findora",
"migrate:ropsten": "truffle migrate --reset --network ropsten",
"deploy:app": "cd ./frontend && ./deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adorsys/p2p-lending.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adorsys/p2p-lending/issues"
},
"homepage": "https://github.com/adorsys/p2p-lending#readme"
}