-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "erc721baseline",
"version": "0.1.0",
"description": "A baseline ERC721 contract implementation that exposes internal methods to a proxy instance",
"files": [
"contracts/*.sol",
"LICENSE"
],
"scripts": {
"test": "truffle test",
"test:gas": "GAS=true truffle test --reporter eth-gas-reporter",
"docs": "node docs.js"
},
"keywords": [
"ERC721",
"openzeppelin",
"proxy"
],
"author": "0xG",
"license": "MIT",
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.16",
"dotenv": "^16.3.1",
"eth-gas-reporter": "^0.2.25",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.2.0",
"solidity-docgen": "^0.6.0-beta.36",
"truffle": "^5.11.2"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.1"
},
"prettier": {
"plugins": [
"prettier-plugin-solidity"
],
"overrides": [
{
"files": "*.sol",
"options": {
"parser": "solidity-parse",
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false
}
}
]
}
}