forked from FredCoen/nft-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 677 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 677 Bytes
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
{
"name": "nft-tutorial",
"version": "1.0.0",
"description": "forge create contractName",
"main": "_scripts.js",
"directories": {
"lib": "lib"
},
"scripts": {
"deploy": "node ./_scripts.js deploy",
"build": "forge build --force",
"send": "node ./_scripts.js send",
"solhint": "./node_modules/.bin/solhint -f table src",
"prettier:solidity": "./node_modules/.bin/prettier --write src"
},
"author": "FredCoen",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.0"
},
"devDependencies": {
"prettier": "^2.5.1",
"prettier-plugin-solidity": "*",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}