-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.99 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
{
"name": "@mmoeip/inventory",
"version": "0.1.0",
"description": "MMOEIP: Inventory",
"scripts": {
"localChain": "hardhat node",
"clean": "hardhat clean",
"compile": "hardhat compile",
"compile:zkSync": "hardhat compile --network zkSyncTestnet --force",
"accounts": "hardhat accounts",
"generate": "hardhat generate",
"deployDiamond:mumbai": "hardhat run scripts/diamond-migrations/001_deployDiamond.ts --network polygonMumbai",
"deployDiamond:localhost": "hardhat run scripts/diamond-migrations/001_deployDiamond.ts --network localhost",
"deployDiamond:wasdley": "hardhat run scripts/diamond-migrations/001_deployDiamond.ts --network mantleWasdley",
"deployDiamond:mantle": "hardhat run scripts/diamond-migrations/001_deployDiamond.ts --network mantle",
"test": "REPORT_GAS=true hardhat test --network hardhat",
"test:ganache": "REPORT_GAS=true hardhat test --network localhost",
"lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore ./deploy/**/*.ts ./tasks/**/*.ts ./test/**/*.ts ./helpers/**/*.ts",
"solhint": "solhint ./contracts/**/*.sol",
"format": "yarn prettier -w ./deploy/**/*.ts ./tasks/**/*.ts ./tests/**/*.ts ./helpers/**/*.ts contracts/**/*.sol ",
"format:check": "yarn prettier -c ./deploy/**/*.ts ./tasks/**/*.ts ./tests/**/*.ts ./helpers/**/*.ts ./contracts/**/*.sol "
},
"files": [
"/contracts/**/*.sol",
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/mocks/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mmoeip/inventory.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmoeip/inventory/issues"
},
"homepage": "https://github.com/mmoeip/inventory#readme",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@swc/core": "^1.3.36",
"@swc/wasm": "^1.3.36",
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.7",
"conventional-changelog-cli": "^4.0.0",
"debug": "^4.3.4",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"hardhat": "^2.16.1",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"solhint": "^3.4.0",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5",
"zksync-web3": "^0.14.3"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"fast-csv": "^4.3.6"
}
}