-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 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
28
29
30
31
32
33
{
"name": "project-1-ethersjs",
"version": "1.0.0",
"description": "final-revision-ethersjs",
"main": "deploy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "solcjs --abi --bin --include-path node_modules/ --base-path . -o . contracts/SimpleStorage.sol",
"wallet:encrypt": "node encrypt.js",
"contract:deploy": "node deploy.js"
},
"keywords": [
"javascript",
"solidity",
"ethersjs",
"smartContracts",
"hybridContracts",
"blockchain",
"ethereum",
"web3"
],
"author": "theirrationalone",
"license": "MIT",
"dependencies": {
"ethers": "^5.7.2",
"solc": "^0.8.17"
},
"devDependencies": {
"dotenv": "^16.0.3",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.1.1"
}
}