-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "@nftfyorg/v1-periphery",
"version": "1.0.30",
"description": "Nftfy V1 Periphery Smart Contracts",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"contracts/**/*.sol",
"build/**/*.d.ts",
"build/**/*.js",
"build/**/*.json"
],
"dependencies": {
"web3": "^1.6.1"
},
"devDependencies": {
"@openzeppelin/contracts": "3.3.0",
"@truffle/hdwallet-provider": "^1.2.2",
"dotenv": "^8.2.0",
"ganache-cli": "^6.12.2",
"truffle": "^5.1.66",
"truffle-flattener": "^1.5.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "truffle compile",
"deploy": "truffle migrate",
"deploy:mainnet": "truffle migrate --network mainnet",
"deploy:kovan": "truffle migrate --network kovan",
"prepublishOnly": "npm run build && npm run tsc",
"source": "truffle-flattener contracts/*.sol | sed '/^.*SPDX-License-Identifier:.*$/d' | sed '1s/^/\\/\\/ SPDX-License-Identifier: GPL-3.0-only\\n\\n/' > Contracts.sol",
"test": "truffle test",
"tsc": "tsc"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nftfy/nftfy-v1-periphery.git"
},
"author": "raugfer",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/nftfy/nftfy-v1-periphery/issues"
},
"homepage": "https://github.com/nftfy/nftfy-v1-periphery#readme"
}