-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
34
35
36
37
38
39
40
41
42
43
{
"name": "sol-price-oracles",
"version": "0.2.0",
"license": "GPL-3.0",
"description": "sol-price-oracles",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/*.sol",
"solhint": "./node_modules/.bin/solhint ./contracts/*.sol",
"truffle": "./node_modules/.bin/truffle",
"ganache-cli": "./node_modules/.bin/ganache-cli",
"lint": "./node_modules/.bin/eslint ./test/*",
"lint:fix": "./node_modules/.bin/eslint --fix ./test --ext .js"
},
"dependencies": {
"config": "^3.3.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.0.36",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ganache-cli": "^6.8.2",
"left-pad": "^1.3.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"solhint": "^2.3.1",
"solhint-plugin-prettier": "0.0.4",
"truffle": "^5.1.32"
}
}