-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@perp/contract",
"version": "0.13.1",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "ts-node --files scripts/build.ts",
"test": "ts-node --files scripts/test.ts",
"coverage": "cross-env COVERAGE=1 ts-node --files scripts/test.ts",
"simulate": "ts-node --files scripts/simulate.ts",
"deploy": "ts-node --files scripts/deploy.ts $npm_config_stage",
"pull-metadata": "ts-node --files scripts/pull-metadata.ts",
"push-metadata": "ts-node --files scripts/push-metadata.ts",
"dev": "ts-node --files scripts/dev.ts",
"status": "ts-node --files scripts/status-check.ts $npm_config_stage",
"init-check": "ts-node --files scripts/initialization-check.ts",
"clean": "ts-node --files scripts/clean.ts",
"lint": "solhint src/**/*.sol",
"flatten": "ts-node --files scripts/flatten.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@chainlink/contracts": "0.0.10",
"@ethersproject/experimental": "5.0.7",
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@nomiclabs/hardhat-web3": "2.0.0",
"@opengsn/contracts": "^3.0.0-beta.6",
"@opengsn/gsn": "2.0.3",
"@openzeppelin/contracts-ethereum-package": "3.0.0",
"@openzeppelin/hardhat-upgrades": "1.22.0",
"@openzeppelin/test-helpers": "0.5.5",
"@openzeppelin/upgrades": "2.8.0",
"@testdeck/mocha": "0.1.0",
"@truffle/hdwallet-provider": "1.0.43",
"@typechain/ethers-v5": "5.0.0",
"@typechain/hardhat": "1.0.1",
"@typechain/truffle-v5": "3.0.0",
"@typechain/web3-v1": "1.0.0",
"@types/chai": "4.2.11",
"@types/chai-as-promised": "7.1.2",
"@types/mocha": "7.0.2",
"@types/node": "13.13.4",
"@types/node-fetch": "2.5.7",
"@types/shelljs": "0.8.6",
"@types/yargs": "15.0.11",
"@typescript-eslint/eslint-plugin": "2.14.0",
"@typescript-eslint/parser": "2.14.0",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.2",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.1",
"ethereum-waffle": "3.1.2",
"ethers": "^5.7.1",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "1.0.4",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"nyc": "15.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"shelljs": "0.8.3",
"solc": "0.6.9",
"solhint": "3.3.1",
"solidity-bytes-utils": "0.1.1",
"solidity-coverage": "0.7.13",
"truffle-flatten": "1.0.8",
"ts-generator": "0.1.1",
"ts-mockito": "2.6.1",
"ts-node": "8.9.1",
"tsconfig-paths": "3.9.0",
"typechain": "4.0.1",
"typescript": "3.8.3",
"web3": "1.2.8",
"web3-core": "1.2.8",
"web3-eth-contract": "1.2.8",
"yargs": "16.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.tsx": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.sol": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.2"
}
}