-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "spacedicks-contract",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"author": "juliencrn",
"license": "MIT",
"engines": {
"node": "16.13.0"
},
"scripts": {
"compile": "truffle compile",
"compile:testnet": "truffle compile --network mumbai --compile-all",
"compile:mainnet": "truffle compile --network polygon --compile-all",
"migrate": "truffle migrate --reset",
"migrate:testnet": "truffle migrate --reset --network mumbai --compile-all",
"migrate:mainnet": "truffle migrate --reset --network polygon --compile-all",
"verify:testnet": "truffle run verify SpaceDicks --network mumbai",
"verify:mainnet": "truffle run verify SpaceDicks --network polygon",
"test": "truffle test"
},
"keywords": [
"Matic",
"Polygon",
"Ethereum",
"Truffle",
"NFT",
"dapp",
"solidity",
"web3"
],
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@truffle/hdwallet-provider": "^1.7.0",
"dotenv": "^10.0.0",
"web3-utils": "^1.6.1"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.4",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.18"
}
}