forked from ArtBlocks/artblocks-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.66 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
{
"name": "gen721",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"docgen": "hardhat docgen",
"generate:typechain": "typechain --target ethers-v5 --outDir ./scripts/contracts './artifacts/contracts/**/!(*.dbg)*.json'",
"test": "hardhat test",
"test:parallel": "hardhat test --parallel",
"coverage": "hardhat coverage",
"format": "prettier --write 'contracts/**/*.sol' && prettier --write 'scripts/**/*.ts' && prettier --write 'test/**/*.ts'",
"lint": "prettier --check 'contracts/**/*.sol' && prettier --check 'scripts/**/*.ts' && prettier --check 'test/**/*.ts' && npx eslint 'test/**/*.ts'",
"remix": "remixd -s ./ --remix-ide https://remix.ethereum.org"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.58.0",
"@aws-sdk/credential-providers": "^3.58.0",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@gnosis.pm/safe-core-sdk": "^2.1.0",
"@gnosis.pm/safe-core-sdk-types": "^1.1.0",
"@gnosis.pm/safe-ethers-lib": "^1.1.0",
"@gnosis.pm/safe-service-client": "^1.1.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@remix-project/remixd": "^0.5.6",
"@typechain/ethers-v5": "^6.0.5",
"@types/jest": "^27.0.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"aws-sdk-client-mock": "^0.6.2",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^8.25.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.10.2",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.31",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"prompt-sync": "^4.2.0",
"solidity-coverage": "^0.7.21",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
},
"author": "Art Blocks, Inc",
"license": "LGPL-3.0-only",
"dependencies": {
"@openzeppelin-0.5/contracts": "npm:@openzeppelin/[email protected]",
"@openzeppelin-4.5/contracts": "npm:@openzeppelin/[email protected]",
"@openzeppelin-4.7/contracts": "npm:@openzeppelin/[email protected]"
}
}