-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 992 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 992 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
{
"name": "bertembeddings",
"version": "1.0.0",
"description": "BERTEmbeddings - Solidity Smart Contract with JS Tooling",
"bin": {
"bertembeddings-cli": "./scripts/cli.js"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"interact": "hardhat run scripts/interact.js",
"api": "node scripts/api-server.js",
"cli": "node scripts/cli.js",
"node": "hardhat node"
},
"dependencies": {
"commander": "^11.1.0",
"express": "^4.18.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.1",
"hardhat": "^2.19.0"
},
"author": "Ronaldo45rt",
"license": "MIT"
}