-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 850 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
30
{
"name": "MyToken",
"version": "1.0.0",
"description": "ERC20 token with customized UniswapV2 Buy/Sell",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile",
"deploy-dev": "truffle migrate --network development",
"test": "mocha --exit --recursive --timeout 60000"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^2.0.13",
"@uniswap/sdk": "^3.0.3",
"chai": "^4.3.6",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.1",
"jsbi": "^4.3.0",
"mocha": "^10.0.0",
"truffle-plugin-verify": "^0.5.26"
}
}