-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@nftfyorg/v1-core",
"version": "1.5.17",
"description": "Nftfy V1 Core Smart Contracts",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"contracts/**/*.sol",
"build/**/*.d.ts",
"build/**/*.js",
"build/**/*.json"
],
"dependencies": {
"axios": "^0.26.0",
"source-map-support": "^0.5.21",
"web3": "^1.7.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "3.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.16",
"chai": "^4.3.6",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.7",
"hardhat": "^2.9.6",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"prepublishOnly": "npm run build && npm run tsc",
"source": "hardhat flatten > Contracts.sol",
"tsc": "tsc"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nftfy/nftfy-v1-core.git"
},
"author": "raugfer",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/nftfy/nftfy-v1-core/issues"
},
"homepage": "https://github.com/nftfy/nftfy-v1-core#readme"
}