-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 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
55
{
"name": "@bobafaucet/contracts",
"version": "0.0.1",
"description": "BOBA Smart Contracts",
"private": true,
"author": "Enya.ai",
"license": "MIT",
"types": "dist/index",
"scripts": {
"build": "yarn build:contracts",
"build:contracts": "hardhat compile",
"deploy": "ts-node \"./bin/deploy.ts\"",
"clean": "rm -rf ./artifacts ./cache",
"lint": "yarn lint:check",
"lint:check": "eslint . --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint:check --fix",
"lint:contracts": "yarn solhint -f table contracts/**/*.sol",
"test": "yarn test:contracts",
"test:contracts": "hardhat test --show-stack-traces",
"test:coverage": "NODE_OPTIONS=--max_old_space_size=8192 hardhat coverage",
"test:slither": "slither ."
},
"dependencies": {
"@eth-optimism/contracts": "^0.5.13",
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/abstract-signer": "^5.5.0",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.3.2",
"chalk": "^4.1.1",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"patch-package": "^6.4.7"
},
"devDependencies": {
"@ethersproject/providers": "^5.0.24",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/jest": "^26.0.22",
"@types/mocha": "^8.2.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"directory-tree": "^2.2.7",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.5",
"hardhat": "^2.3.0",
"hardhat-deploy": "^0.9.3",
"mocha": "^8.3.1",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"solidity-coverage": "^0.7.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}