-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
50 lines (49 loc) · 1.69 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
{
"name": "non-fungible-apes",
"description": "Non Fungible Apes (or NFAs) are a cryptographically generated set of 1,000 unique, rare, and immutable apes forked from the original CryptoPunks codebase.",
"version": "2.0.0",
"main": "deploy-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"compile": "truffle compile",
"migrate:dev": "truffle migrate --network development",
"migrate:bsc-testnet": "truffle migrate --network bsc-testnet",
"migrate:bsc": "truffle migrate --network bsc",
"verify:bsc-testnet": "truffle run verify NonFungibleApesV2 --network bsc-testnet",
"verify:bsc": "truffle run verify NonFungibleApesV2 --network bsc",
"mint-nfas": "clear && ts-node ./scripts/mintNfas.ts",
"mint-nfas:dev": "yarn migrate:dev --reset && yarn mint-nfas",
"ganache": "npx ganache --mnemonic hip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApeSwapFinance/non-fungible-apes.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ApeSwapFinance/non-fungible-apes/issues"
},
"homepage": "https://github.com/ApeSwapFinance/non-fungible-apes#readme",
"dependencies": {
},
"devDependencies": {
"@ethersproject/experimental": "^5.5.0",
"@truffle/hdwallet-provider": "^1.5.1",
"@defifofum/etherscan-sdk": "0.0.2",
"@openzeppelin/contracts": "^4.2.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"fs": "^0.0.1-security",
"ganache": "^7.0.0-internal.1341",
"moment": "^2.29.1",
"truffle": "^5.4.16",
"truffle-contract-size": "^2.0.1",
"truffle-plugin-verify": "^0.5.15",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}