-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 2.26 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
{
"name": "dynamic-nfts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"compile": "hardhat compile",
"test": "truffle test ./test/truffle.test.js",
"dep": "hardhat --network polytest deploy",
"dep-main": "hardhat --network mainnet deploy",
"testc": "clear & hardhat test",
"generate": "ts-node ./metadata-generator/index.ts",
"flat": "./node_modules/.bin/truffle-flattener contracts/MonaUpgradesNFT.sol > contracts/flat/Mona.sol",
"verifyT": "truffle run verify DyNFTFactory@0xf30536ea9bcC6F98e6D66f52c7104522C234E2D0 --network test",
"tcompile": "truffle compile",
"deploy-test": "truffle migrate --network test",
"deploy-dev": "truffle migrate --network development",
"deploy-prod": "truffle migrate --network main"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "",
"dependencies": {
"@ethersproject/providers": "^5.0.17",
"@flashbots/ethers-provider-bundle": "^0.2.1",
"@openzeppelin/contracts": "^4.1.0",
"@truffle/hdwallet-provider": "^1.7.0",
"@types/decimal.js": "^7.4.0",
"abi-decoder": "^2.4.0",
"bignumber.js": "^9.0.1",
"decimal.js": "^10.2.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"nft.storage": "^3.4.0",
"node-schedule": "^2.0.0",
"truffle": "^5.4.22",
"truffle-flattener": "^1.5.0",
"ws": "^7.4.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.7",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.11",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.1.4",
"hardhat": "^2.0.4",
"hardhat-deploy": "^0.7.6",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.3",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.2"
}
}