-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "nftprotect-contracts",
"version": "1.0.0",
"description": "Decentralized self-custody protocol for safeguarding digital assets from theft and private key compromise",
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat run ./scripts/deploy.ts",
"verify": "hardhat run ./scripts/verify.ts",
"configure": "hardhat run ./scripts/configure.ts",
"update-readme": "hardhat run ./scripts/updateReadme.ts",
"export-abi": "hardhat export-abi",
"clean": "rm ./contracts.json; hardhat clear-abi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nftprotect/nftprotect-contracts.git"
},
"keywords": [
"nftprotect",
"kleros",
"defi",
"nft"
],
"author": "Ilya Svirin, Oleg Dubinkin, Denis Smirnov",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/nftprotect/nftprotect-contracts/issues"
},
"homepage": "https://github.com/nftprotect/nftprotect-contracts#readme",
"dependencies": {
"@kleros/erc-792": "^8.0.0",
"@openzeppelin/contracts": "^5.0.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "2.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/hardhat-viem": "^1.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.10.5",
"chai": "^4.3.10",
"hardhat": "^2.19.3",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.2",
"typescript": "~5.0.4",
"viem": "^1.20.3"
}
}