-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 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
{
"name": "@deepsquare/smart-contracts",
"version": "1.1.0",
"description": "DeepSquare smart contracts running on the Avalanche blockchain",
"keywords": [
"avalanche",
"blockchain",
"erc20",
"avalanche-c-chain"
],
"homepage": "https://github.com/deepsquare-io/smart-contracts#readme",
"bugs": "https://github.com/deepsquare-io/smart-contracts/issues",
"license": "MIT",
"maintainers": [
"Mathieu Bour <[email protected]>",
"Clarisse Tarrou <[email protected]>",
"Valentin Pollart <[email protected]>"
],
"contributors": [
"Julien Schneider <[email protected]>",
"Charly Mancel <[email protected]>"
],
"funding": "https://deepsquare.io",
"scripts": {
"format": "prettier --write {**/*,*}.{js,ts,sol,json,yml,yaml,md}",
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas": "HH_REPORT_GAS=true hardhat test",
"test:coverage": "hardhat coverage",
"solhint": "solhint contracts/**/*.sol",
"eslint": "eslint {scripts,test}/**/*.ts",
"fork:fuji": "hardhat node --fork https://api.avax-test.network/ext/bc/C/rpc"
},
"repository": "github:deepsquare-io/smart-contracts",
"devDependencies": {
"@chainlink/contracts": "^0.4.0",
"@deepsquare/prettier-config": "^1.0.3",
"@ethersproject/abi": "5.6.0",
"@ethersproject/bignumber": "5.6.0",
"@ethersproject/bytes": "5.6.1",
"@ethersproject/contracts": "5.6.0",
"@ethersproject/hash": "5.6.0",
"@ethersproject/keccak256": "5.6.0",
"@ethersproject/providers": "5.6.2",
"@ethersproject/units": "5.6.0",
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@swc/core": "^1.2.165",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/cli-progress": "^3.9.2",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.6",
"cli-progress": "^3.10.0",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "5.6.1",
"fast-glob": "^3.2.11",
"hardhat": "^2.9.3",
"hardhat-gas-reporter": "^1.0.8",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"private": true,
"engines": {
"node": "^16"
},
"dependencies": {
"tslog": "^3.3.3"
}
}