-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1003 Bytes
/
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
{
"name": "minimum-viable-nft",
"version": "1.0.0",
"description": "Contracts for a minimum viable NFT compatible with Opensea Polygon",
"main": "truffle.js",
"scripts": {
"test": "scripts/test.sh",
"migrate": "./node_modules/.bin/truffle migrate",
"deploy": "./node_modules/.bin/truffle migrate --reset --network matic",
"compile": "./node_modules/.bin/truffle compile --all",
"ganache": "ganache-cli -d -i 5777 --gasLimit 0xfffffffffff -m \"enable depend figure right kit daughter job giraffe news window tonight more\""
},
"author": "ana0",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"@truffle/hdwallet-provider": "^1.5.0",
"dotenv": "^8.2.0",
"ganache-cli": "^6.12.2",
"truffle": "5.4.7",
"truffle-contract": "^4.0.31"
},
"devDependencies": {
"chai": "^4.3.0",
"chai-bn": "^0.2.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}