-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 770 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 770 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
{
"name": "winsnip-auto-deploy",
"version": "1.0.0",
"description": "Auto Deploy and Transfer Token System for EVM chains",
"main": "index.js",
"scripts": {
"start": "node src/tokenApp.js",
"deploy": "hardhat run src/tokenApp.js",
"compile": "hardhat compile",
"test": "hardhat test",
"dev": "nodemon src/tokenApp.js"
},
"dependencies": {
"@openzeppelin/contracts": "^5.2.0",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"ethers": "^6.13.5",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"commander": "^11.1.0"
},
"type": "module",
"license": "MIT",
"author": "Winsnip",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.19",
"nodemon": "^3.0.3"
}
}