-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.6 KB
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
{
"name": "dotone-contracts-solidity",
"version": "1.0.0",
"main": "index.js",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"compile": "hardhat compile --config hardhat.config.ts",
"build": "hardhat chain --testnet oil && hardhat clean && yarn compile",
"postbuild": "node scripts/copy-abis.js && node scripts/copy-types.js",
"test": "hardhat test",
"build:packages:new": "yarn workspace @dotone/base build && yarn workspace @dotone/adaptors build && yarn workspace @dotone/rpc build && yarn workspace @dotone/client build",
"build:packages:old": "yarn workspace @dotone/sdk build && yarn workspace @dotone/presets build && yarn workspace @dotone/clients build",
"build:packages": "yarn run build:packages:new && yarn run build:packages:old",
"estimate": "hardhat estimate --upgradable true",
"docgen": "solidity-docgen --solc-module solc -t ./templates",
"deploy:oil": "hardhat deploy --testnet oil --upgradable true",
"deploy:bsc-testnet": "hardhat deploy --testnet bnb-testnet --upgradable true",
"deploy:ethereum-sepolia": "hardhat deploy --testnet ethereum-sepolia --upgradable true"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.2",
"@openzeppelin/contracts-upgradeable": "^4.7.2",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@stylistic/eslint-plugin": "^3.1.0",
"@swc/core": "^1.2.224",
"@swc/helpers": "^0.4.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^22.13.11",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"ethereum-waffle": "^4.0.4",
"ethers": "^5.7.2",
"got": "^11.8.5",
"hardhat": "2.22.18",
"mocha": "^10.0.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"regenerator-runtime": "^0.13.9",
"solc": "0.8.6",
"solidity-docgen": "^0.5.16",
"ts-generator": "^0.1.1",
"tsx": "^4.20.3",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.4.5"
},
"resolutions": {
"ethers": "5.7.2",
"@types/node": "22.13.11"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}