-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.49 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
{
"name": "dual-layer-token",
"description": "This name has been chosen because the DLT operates with a dual-layer structure, utilizing mainIds and subIds for versatile token management. DLT is not yet a standard, but it aims to offer a comprehensive solution for various industries, including gaming, invoice trading, and real estate.",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
},
"directories": {
"contracts": "contracts",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/polytrade-finance/dual-layer-token.git"
},
"scripts": {
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage",
"compile": "npx hardhat compile",
"lint:js": "npx eslint \"**/*.js\"",
"lint:js-fix": "npx eslint \"**/*.js\" --fix",
"lint:sol": "npx prettier \"**/*.{json,sol,md}\" --check && npx solhint \"contracts/**/*.sol\"",
"lint:sol-fix": "npx prettier \"**/*.{json,sol,md}\" --write && npx solhint \"contracts/**/*.sol\" --fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js-fix && npm run lint:sol-fix",
"prepare": "husky install"
},
"author": "Polytrade",
"license": "MIT",
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^2.0.1",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.6.5",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "^3.3.8",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@metamask/eth-sig-util": "^6.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^4.8.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"hardhat": "^2.17.0",
"hardhat-contract-sizer": "^2.8.0"
}
}