This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
81 lines (81 loc) · 2.29 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ethersphere/bee-factory",
"version": "0.5.2",
"description": "Orchestration CLI for spinning up local development Bee cluster with Docker",
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"docker"
],
"homepage": "https://github.com/ethersphere/bee-factory",
"bugs": {
"url": "https://github.com/ethersphere/bee-factory/issues/"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/bee-factory.git"
},
"bin": {
"bee-factory": "./dist/src/index.js"
},
"main": "dist/src/index.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && tsc",
"start": "ts-node src/index.ts",
"test": "jest --verbose --config=jest.config.ts",
"types:check": "tsc --project tsconfig.test.json",
"lint": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"depcheck": "depcheck ."
},
"dependencies": {
"@ethersphere/bee-js": "^5.0.0",
"chalk": "^4.1.2",
"dockerode": "^3.3.4",
"furious-commander": "^1.7.1",
"node-fetch": "3.0.0-beta.9",
"ora": "^5.3.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ethersphere/jest-serial-runner": "^1.0.0",
"@fluffy-spoon/substitute": "^1.208.0",
"@jest/types": "^29.2.1",
"@types/dockerode": "^3.3.11",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"depcheck": "^1.4.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.0",
"jest-runner": "^29.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"bee": "1.9.0",
"supportedBee": ">=1.9.0"
}
}