forked from saddle-finance/saddle-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) 路 3.61 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) 路 3.61 KB
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
97
98
99
100
101
102
103
{
"name": "saddle-contract",
"version": "0.0.1",
"description": "The smart contracts behind saddle.finance 馃",
"files": [
"dist/**/*"
],
"directories": {
"test": "test"
},
"dependencies": {
"@boringcrypto/boring-solidity-e06e943": "boringcrypto/BoringSolidity#e06e943",
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#f05de5f2",
"@openzeppelin/contracts-4.2.0": "npm:@openzeppelin/contracts@4.2.0",
"@openzeppelin/contracts-upgradeable-4.2.0": "npm:@openzeppelin/contracts-upgradeable@4.2.0",
"@openzeppelin/contracts": "3.4.1",
"@openzeppelin/contracts-upgradeable": "3.4.1",
"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.11",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"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": "^1.1.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.5.2",
"ethlint": "^1.2.5",
"hardhat": "^2.8.0",
"hardhat-deploy": "^0.9.14",
"hardhat-gas-reporter": "^1.0.6",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^7.0.4",
"lint-staged": "^11.0.0",
"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.17",
"solidity-docgen": "^0.5.13",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
},
"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",
"test": "hardhat test",
"coverage": "export CODE_COVERAGE=true && hardhat coverage --temp ./build/artifacts ; unset CODE_COVERAGE",
"deploy": "hardhat deploy",
"start": "hardhat node --show-accounts",
"fork": "dotenv -v FORK_MAINNET=true hardhat node --show-accounts --fork $ALCHEMY_API ",
"prepare": "npm run build",
"addresses": "node scripts/print-addresses.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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",
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}