-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.32 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
{
"name": "cruna-nft-sample",
"version": "0.1.0",
"description": "A Cruna Protocol NFT boilerplate",
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"test": "NODE_ENV=test npx hardhat test",
"test:gas": "NODE_ENV=test GAS_REPORT=yes npx hardhat test",
"compile": "npx hardhat compile",
"lint": "npm run lint:sol && npm run lint:js",
"lint:sol": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"lint:js": "npx prettier --write ./test/**/*.js ./**/*.js",
"prepare": "husky install",
"size": "npx hardhat size-contracts",
"postinstall": "./post-install.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cruna-cc/cruna-nft-sample.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/cruna-cc/cruna-nft-sample/issues"
},
"homepage": "https://github.com/cruna-cc/cruna-nft-sample#readme",
"license": "MIT",
"devDependencies": {
"@ethersproject/contracts": "^5.7.0",
"@metamask/eth-sig-util": "^7.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@secrez/cryptoenv": "^0.2.4",
"bn.js": "^5.2.1",
"case": "^1.6.3",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eth-deploy-utils": "1.0.0-beta.11",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^4.0.10",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"fs-extra": "^11.2.0",
"hardhat": "^2.22.5",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.10",
"husky": "^8.0.3",
"keccak256": "^1.0.6",
"prettier": "^3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"pretty-quick": "^3.3.1",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.7",
"solhint": "^4.5.4",
"solidity-coverage": "^0.8.12",
"typescript": "^5.5.2"
},
"lint-staged": {
"*.js": "prettier --write",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@cruna/protocol": "^0.8.3",
"erc7656": "^0.2.0"
}
}