-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.24 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
{
"name": "crplay-launchpad-contracts",
"version": "1.0.0",
"description": "crplay-launchpad-contracts is a contract for launchpad pre-sale",
"main": "index.js",
"repository": "",
"scripts": {
"test": "truffle test ./test/*",
"start-blank": "rm -rf client/src && cp -rf barebones/src client/",
"client": "cd client && npm run start",
"console": "truffle console --network local",
"migrate:local": "truffle migrate --reset --network local",
"migrate:ropsten": "truffle migrate --reset --network ropsten",
"size":"truffle run contract-size",
"build":"truffle build && npm run size",
"deploy-test":"truffle deploy --network development_test",
"deploy":" rm -rf build && truffle deploy --network testnet"
},
"author": "Rafael Medeiros <[email protected]>",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "4.4.2",
"@truffle/hdwallet-provider": "2.0.10",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^8.2.0",
"truffle-contract-size": "^2.0.1"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"got": ">=11.8.5"
}
}