-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "@ethersphere/bee-factory",
"version": "0.5.2",
"description": "Local Ethereum Swarm development stack",
"bin": {
"bee-factory": "./bin/bee-factory.js"
},
"main": "dist/cli.js",
"files": [
"dist/",
"bin/",
"src/contracts/artifacts/",
"src/snapshot/"
],
"scripts": {
"compile-contracts": "hardhat compile && node scripts/copy-artifacts.js",
"build": "tsc",
"prepare": "npm run compile-contracts && npm run build",
"dev": "ts-node src/cli.ts"
},
"dependencies": {
"@ethersphere/bee-js": "^12.1.0",
"chalk": "^5.3.0",
"dockerode": "^4.0.2",
"ethers": "^6.11.0",
"ora": "^8.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/contracts-v3": "npm:@openzeppelin/contracts@^3.4.2",
"@types/dockerode": "^3.3.28",
"@types/node": "^20.11.30",
"@types/yargs": "^17.0.32",
"hardhat": "^2.22.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"license": "BSD-3-Clause"
}