-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
{
"name": "ether-minter",
"version": "0.6.28",
"description": "An NFT minter microservice",
"author": "jovijovi <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"microservice",
"ether-minter",
"ethereum",
"ether",
"minter",
"mint",
"NFT",
"ERC721",
"ERC721A"
],
"scripts": {
"compile": "yarn hardhat compile",
"deploy": "hardhat run ./scripts/deploy.ts --network custom",
"flatten": "hardhat flatten ${CONTRACT_SRC} > ${CONTRACT_DST}",
"remixd": "remixd -s ./contracts --remix-ide https://remix.ethereum.org",
"clean": "yarn hardhat clean && rm -rf ./dist && rm -rf ./cache",
"test": "hardhat test",
"typecheck": "yarn compile && yarn test && yarn tsc --noEmit",
"build": "yarn clean && yarn compile && tsc --build && cp -ap ./conf ./dist/ && cp -ap ./artifacts ./dist/",
"dev-run": "ts-node ./src/main/index.ts",
"dist-run": "node ./dist/src/main/index.js"
},
"dependencies": {
"@jovijovi/ether-core": "0.5.4",
"@jovijovi/ether-keystore": "0.2.4",
"@jovijovi/ether-network": "0.3.4",
"@jovijovi/express-2fa-token": "^1.1.0",
"@jovijovi/pedrojs-common": "1.1.26",
"@jovijovi/pedrojs-network-http": "1.1.26",
"@openzeppelin/contracts": "4.7.0",
"erc721a": "4.1.0",
"ethers": "5.7.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.0",
"@nomiclabs/hardhat-etherscan": "3.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@tsconfig/node18": "^1.0.1",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.3",
"@types/chai-as-promised": "7.1.5",
"@types/mocha": "10.0.0",
"@types/node": "18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.26.0",
"hardhat": "2.12.0",
"mocha": "^10.1.0",
"solc": "0.8.9",
"ts-generator": "^0.1.1",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.8.4"
}
}