-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
{
"name": "@shibuidao/exchange",
"version": "1.6.1",
"repository": "https://github.com/shibuidao/exchange.git",
"author": "Nejc Drobnic <[email protected]>",
"license": "UNLICENSED",
"types": "typechain/index.ts",
"main": "typechain/index.ts",
"private": false,
"scripts": {
"typechain": "yarn compile",
"coverage": "yarn test:hardhat:coverage",
"clean": "rimraf .shibui abis artifacts cache docs out",
"precompile": "yarn clean",
"compile": "yarn compile:hardhat",
"compile:hardhat": "hardhat compile",
"test:hardhat": "hardhat test --network hardhat",
"test:hardhat:coverage": "hardhat coverage --network hardhat",
"sversion": "standard-version",
"predeploy:exchange:frame": "yarn clean",
"deploy:exchange:frame": "hardhat run ./scripts/deploy.ts --network frame"
},
"files": [
"typechain",
"abis"
],
"dependencies": {},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@primitivefi/hardhat-dodoc": "^0.1.3",
"@rari-capital/solmate": "^6.2.0",
"@sapphire/eslint-config": "^3.2.3",
"@sapphire/prettier-config": "^1.1.6",
"@sapphire/ts-config": "^3.0.0",
"@shibuidao/royalty-registry": "^0.1.2",
"@shibuidao/solid": "shibuidao/solid",
"@typechain/ethers-v5": "^7.1.2",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.16",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"concurrently": "^7.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.3.0",
"hardhat-abi-exporter": "^2.7.2",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"standard-version": "^9.3.2",
"ts-node": "^10.0.0",
"typechain": "^5.1.2",
"typescript": "^4.3.2",
"zod": "^3.9.5"
},
"resolutions": {
"colors": "1.4.0"
},
"publishConfig": {
"access": "public"
}
}