-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "minertoken-swap",
"version": "0.9.0-dev",
"description": "Miner Token Uniswap integration.",
"author": [
"Hayden Young"
],
"scripts": {
"deploy:development": "truffle deploy --network development",
"deploy:staging": "truffle deploy --network kovan",
"lint:solidity": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"lint:tests": "./node_modules/.bin/eslint ./test/",
"test": "truffle run ganache-test"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "*",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/contract": "^4.3.12",
"@truffle/hdwallet-provider": "^1.2.6",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"truffle-ganache-test": "^1.1.0"
}
}