forked from Racks-Labs/ERC721-Linkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "erc721l",
"version": "0.0.10",
"description": "ERC721L allows you to create experiences where people can earn a erc721l and link it to their favourite nft of your project increasing the percieved value of it and giving a onchain reputation linked to that token.",
"main": "index.js",
"scripts": {
"format": "prettier -w .",
"lint": "eslint . && solhint ./contracts/**/*.sol",
"test": " npx hardhat test",
"typechain": "npx hardhat typechain",
"prepare": "husky install"
},
"files": [
"**/*.sol",
"!/contracts/test/**/*",
"!/mocks/**/*",
"!/artifacts/**/*",
"!/typechain-types/**/*"
],
"keywords": [
"web3",
"hardhat",
"contracts",
"solidity",
"erc721",
"nft",
"ethereum",
"smart"
],
"author": {
"name": "RacksLabs",
"email": "[email protected]",
"url": "https://www.rackslabs.com"
},
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"hardhat": "^2.12.4",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.2",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "^3.3.7",
"typescript": "^4.9.4",
"zod": "^3.20.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Racks-Labs/ERC721-Linkable"
},
"homepage": "https://www.e7l.rackslabs.com/",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}