This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.25 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
{
"name": "@topos-protocol/topos-smart-contracts",
"version": "3.4.0",
"description": "Topos Smart Contracts",
"repository": {
"type": "git",
"url": "https://github.com/topos-protocol/topos-smart-contracts.git"
},
"license": "MIT",
"author": "Jawad Tariq <[email protected]>",
"main": "",
"files": [
"artifacts",
"typechain-types"
],
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"coverage": "hardhat coverage",
"deploy": "ts-node scripts/deploy.ts",
"deploy:topos-msg-protocol": "ts-node scripts/deploy-topos-msg-protocol.ts",
"deploy:topos-msg-protocol-dynamic": "ts-node scripts/deploy-topos-msg-protocol-dynamic.ts",
"format": "npm run format:sol && npm run format:ts",
"format:fix": "npm run format:sol:fix && npm run format:ts:fix",
"format:sol": "prettier -c 'contracts/**/*.sol'",
"format:sol:fix": "npm run format:sol -- --write",
"format:ts": "prettier -c --ignore-path .gitignore --loglevel warn '**/*.{js,ts}'",
"format:ts:fix": "npm run format:ts -- --write",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:fix": "npm run lint:sol:fix && npm run lint:ts:fix",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "npm run lint:sol -- --fix",
"lint:ts": "eslint --ext .ts .",
"lint:ts:fix": "npm run lint:ts -- --fix",
"register-subnet": "ts-node scripts/register-subnet.ts",
"test": "hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@ethereumjs/rlp": "^4.0.1",
"@ethereumjs/trie": "^5.0.4",
"@ethereumjs/util": "^8.0.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.3.7",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"hardhat": "^2.19.2",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.3",
"ethers": "^6.9.0",
"solidity-rlp": "2.0.7"
}
}