-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 2.07 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@elasticswap/token",
"version": "0.0.3",
"description": "ElasticSwap token and staking contracts",
"main": "index.js",
"private": false,
"scripts": {
"compile": "npx hardhat compile",
"console": "npx hardhat console",
"coverage": "npx hardhat coverage --temp artifacts",
"deploy": "npx hardhat deploy",
"lint": "yarn run prettier && yarn run lint:es6 && yarn run lint:solidity && yarn run lint:tests",
"lint:es6": "npx eslint ./*.js deploy/**/*.js",
"lint:solidity": "npx solhint src/**/*.sol",
"lint:tests": "npx eslint test/**/*.js test/*.js",
"prettier": "yarn run prettier:es6 && yarn run prettier:solidity && yarn run prettier:tests",
"prettier:es6": "prettier --write ./*.js --write deploy/**/*.js",
"prettier:solidity": "prettier --write src/**/*.sol --write src/**/**/*.sol",
"prettier:tests": "yarn compile && prettier --write test/**/*.js test/*.js",
"test": "yarn run prettier:tests && yarn run lint:tests && npx hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elasticdao/elasticswap.git"
},
"author": "0xean",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/elasticdao/elasticswap/issues"
},
"homepage": "https://github.com/elasticdao/elasticswap#readme",
"devDependencies": {
"chai": "^4.3.4",
"dotenv": "^16.0.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.3.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "1.0.0-beta.3"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"bignumber.js": "^9.0.2",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.10.6",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.17"
}
}