forked from zeta-chain/app-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.09 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
{
"name": "zetachain",
"license": "MIT",
"version": "0.1.0",
"private": false,
"workspaces": {
"packages": [
"packages/*"
]
},
"keywords": [
"zetachain",
"blockchain",
"solidity",
"omnichain",
"crosschain"
],
"scripts": {
"clean": "yarn workspaces foreach -pv run clean",
"compile": "yarn workspaces foreach -pv run compile",
"g:prepublishOnly": "yarn workspaces foreach -pv run prepublishOnly",
"lint:fix": "npx eslint . --ext .js,.ts --fix",
"lint": "npx eslint . --ext .js,.ts",
"slither": "npx ts-node ./scripts/slither.ts",
"test": "yarn workspaces foreach -ptv run test",
"g:changeset": "changeset",
"g:release": "yarn changeset publish",
"setup-tutorial": "ts-node ./scripts/setup-tutorial.ts"
},
"devDependencies": {
"@changesets/cli": "^2.23.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/inquirer": "^8.2.1",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"ethereum-waffle": "^4.0.9",
"ethereumjs-utils": "^5.2.5",
"ethers": "5.6.8",
"hardhat": "2.12.6",
"inquirer": "^8.2.4",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "10.8.1",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"packageManager": "[email protected]",
"dependencies": {
"solc": "0.8.7"
}
}