-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·29 lines (29 loc) · 992 Bytes
/
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
{
"name": "ssi-based-loan",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"test:local": "truffle test ./test/test-local/* --network local",
"test:rinkeby": "truffle test ./test/test-rinkeby/* --network rinkeby",
"start-blank": "rm -rf client/src && cp -rf barebones/src client/",
"client": "cd client && npm run start",
"console:rinkeby": "truffle console --network rinkeby",
"compile:rinkeby": "truffle compile --reset --network rinkeby",
"migrate:rinkeby": "truffle migrate --reset --network rinkeby",
"migrate:ropsten": "truffle migrate --reset --network ropsten",
"migrate:local": "truffle migrate --reset --network local"
},
"author": "masaun",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@truffle/hdwallet-provider": "^1.1.0",
"dotenv": "^8.2.0",
"eth-block-tracker": "^4.4.3",
"ethereumjs-tx": "^2.1.2"
},
"devDependencies": {}
}