-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 952 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
{
"name": "escrow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"copy": "copyfiles -f -V build/contracts/*.json ./client/abi/",
"dev": "lite-server --baseDir='client'",
"all-dev": "npm run truffle-dev && npm run copy && npm run dev",
"all-dev-gui": "npm run truffle-dev-gui && npm run copy && npm run dev",
"all-prod": "npm run truffle-prod && npm run copy && npm run dev",
"truffle-dev": "truffle compile && truffle migrate --reset --network development",
"truffle-dev-gui": "truffle compile && truffle migrate --reset --network developmentgui",
"truffle-prod": "truffle compile && truffle migrate --reset --network ropsten"
},
"author": "",
"license": "ISC",
"devDependencies": {
"copyfiles": "^2.4.1",
"lite-server": "^2.6.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.3",
"@truffle/hdwallet-provider": "^1.7.0",
"web3": "^1.6.1"
}
}