-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.3 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
{
"name": "@dataswapcore/contracts",
"version": "0.9.7",
"description": "Dataswap core contracts",
"license": "GPL-3.0",
"private": false,
"author": "Dataswap devs",
"files": [
"src/",
"abi/"
],
"scripts": {
"build": "npx hardhat clean;npx hardhat compile",
"test": "echo \"Error: no test specified\"",
"readme": "npx readme-md-generator -p ./templates/readme.md",
"commit": "git-cz",
"release": "npm run build; ./scripts/prepare_abi; git branch --show-current | grep -q '^main$' && release-it",
"contrib:init": "all-contributors init",
"contrib:add": "all-contributors add",
"contrib:check": "all-contributors check",
"contrib:gen": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataswap/core.git"
},
"keywords": [
"dataswap"
],
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@release-it/conventional-changelog": "^8.0.1",
"filecoin-solidity-api": "^1.1.2",
"git-cz": "^4.9.0",
"global": "^4.4.0",
"hardhat-abi-exporter": "2.10.1",
"release-it": "^17.1.1",
"solidity-cborutils": "^2.0.0"
},
"devDependencies": {
"@glif/filecoin-address": "^2.0.43",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-ledger": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.24.0",
"@openzeppelin/upgrades-core": "^1.25.0",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.12.4",
"hardhat-deploy": "^0.11.22",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-preprocessor": "^0.1.5",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.1.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
}
}