This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
85 lines (85 loc) · 2.58 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
{
"name": "@rainprotocol/rain-protocol",
"description": "Onchain intepreted defi for creative expression",
"version": "0.0.16",
"author": "Rain Protocol",
"license": "CAL",
"repository": {
"type": "git",
"url": "https://github.com/rainprotocol/rain-protocol.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/rainprotocol/rain-protocol/issues"
},
"homepage": "http://rainprotocol.github.io/rain-protocol/",
"bin": {
"opmeta": "scripts/getOpmeta.ts",
"rainterpreter-opmeta": "scripts/getRainterpreterOpmeta.ts",
"rain-contract-meta": "scripts/getRainContractMeta.ts",
"contract-meta": "scripts/getContractMeta.ts"
},
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"opmeta": "ts-node ./scripts/getOpmeta.ts",
"rainterpreter-opmeta": "ts-node ./scripts/getRainterpreterOpmeta.ts",
"contract-meta": "ts-node ./scripts/getContractMeta.ts",
"rain-contract-meta": "tsnode ./scripts/getRainContractMeta.ts",
"rain-deploy": "hardhat run deployment/index.ts"
},
"devDependencies": {
"@0x/contract-addresses": "=8.2.0",
"@defi-wonderland/smock": "=2.3.4",
"@ethereumjs/common": "=3.0.2",
"@ethereumjs/evm": "=1.3.0",
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@nomiclabs/hardhat-ethers": "=2.2.1",
"@prb/math": "=4.0.0",
"@rainprotocol/rainlang": "^2.2.2",
"@typechain/ethers-v5": "=10.2.0",
"@typechain/hardhat": "=6.1.5",
"@types/mocha": "=10.0.1",
"@types/node": "=18.14.1",
"@types/string-math": "=1.0.0",
"@typescript-eslint/eslint-plugin": "=5.48.0",
"@typescript-eslint/parser": "=5.48.0",
"ajv": "=8.12.0",
"axios": "^1.3.4",
"cbor": "=8.1.0",
"dotenv": "=16.0.3",
"eslint": "=8.31.0",
"ethers": "=5.7.2",
"hardhat": "=2.12.7",
"hardhat-contract-sizer": "=2.6.1",
"hardhat-gas-reporter": "=1.0.9",
"hardhat-storage-layout": "=0.1.7",
"lodash": "=4.17.21",
"mocha": "=10.2.0",
"prettier": "=2.8.4",
"prettier-plugin-solidity": "=1.1.1",
"pretty-quick": "=3.1.3",
"solc": "=0.8.18",
"solhint": "=3.3.7",
"string-math": "=1.2.2",
"ts-generator": "=0.1.1",
"ts-node": "=10.9.1",
"tslib": "=2.4.1",
"typechain": "=8.1.1",
"typescript": "=4.9.5",
"web3-utils": "=1.8.1"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "=4.8.3"
},
"overrides": {
"solhint": {
"@solidity-parser/parser": "=0.14.5"
},
"hardhat": {
"undici": "=5.19.1"
}
}
}