-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.06 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
{
"name": "everdragons2-cruna-implementation",
"version": "0.1.0",
"description": "Everdragons2 implementation of the Cruna protocol",
"publishConfig": {
"access": "public"
},
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json",
"test": "NODE_ENV=test npx hardhat test",
"test:gas": "NODE_ENV=test GAS_REPORT=true npx hardhat test",
"compile": "npx hardhat compile",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol' && npx prettier --write ./test/**/*.js ./**/*.js",
"coverage": "NODE_ENV=test npx hardhat coverage",
"prepare": "husky install",
"size": "npx hardhat size-contracts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndujaLabs/everdragons2-cruna-implementation.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ndujaLabs/everdragons2-cruna-implementation/issues"
},
"homepage": "https://github.com/ndujaLabs/everdragons2-cruna-implementation#readme",
"license": "GPL3",
"devDependencies": {
"@cruna/cruna-protocol": "1.0.0-beta.3",
"@cruna/ds-protocol": "^1.1.2",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.12.7",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.7",
"husky": "^8.0.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "^3.1.3",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.js": "prettier --write",
"*.{js,css,md}": "prettier --write"
}
}