forked from neonevm/saddle-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "saddle-contract",
"version": "0.0.1",
"description": "The smart contracts behind saddle.finance 🤠",
"files": [
"dist/**/*"
],
"directories": {
"test": "test"
},
"dependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#f05de5f2",
"@boringcrypto/boring-solidity-e06e943": "boringcrypto/BoringSolidity#e06e943",
"@openzeppelin/contracts": "3.4.1",
"@openzeppelin/contracts-4.2.0": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-4.4.0": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable": "3.4.1",
"@openzeppelin/contracts-upgradeable-4.2.0": "npm:@openzeppelin/[email protected]",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.1.1",
"synthetix": "2.56.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-vyper": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"chai": "^4.3.6",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"ethlint": "^1.2.5",
"hardhat": "^2.9.3",
"hardhat-deploy": "github:saddle-finance/hardhat-deploy",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.11",
"shelljs": "^0.8.4",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.18",
"solidity-docgen": "^0.5.13",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"lint": "npm run lint:ts && npm run lint:sol && npm run lint:json",
"lint:fix": "npm run lint:fix:ts && npm run lint:fix:sol && npm run lint:fix:json",
"lint:ts": "eslint --ext ts test/ && eslint --ext ts deploy/ && prettier --list-different {test,deploy}/**/*.ts",
"lint:fix:ts": "eslint --ext ts --fix test/ && eslint --ext ts --fix deploy/ && prettier --write {test,deploy}/**/*.ts",
"lint:json": "eslint --ext json deployments/ && prettier --list-different deployments/**/*.json",
"lint:fix:json": "eslint --ext json deployments/ && prettier --write deployments/**/*.json",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:fix:sol": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol' --fix",
"build": "hardhat compile --no-typechain && hardhat typechain",
"test": "hardhat test --deploy-fixture",
"coverage": "hardhat coverage --temp ./build/artifacts",
"deploy": "hardhat deploy",
"start": "hardhat node",
"fork": "dotenv -v FORK_NETWORK=$npm_config_network hardhat node",
"prepare": "npm run build",
"addresses": "node scripts/print-addresses.js"
},
"config": {
"eslintPaths": "test/ deploy/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saddle-finance/saddle-contract.git"
},
"keywords": [
"cryptocurrency",
"interoperability",
"bitcoin",
"ethereum",
"tbtc",
"defi"
],
"author": "Satoshi Nakamoto 🤪",
"license": "MIT"
}