-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
99 lines (99 loc) · 2.96 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@fairdatasociety/fdp-play",
"version": "3.2.0",
"description": "Orchestration CLI for spinning up local development Bee cluster and FDP environment with Docker",
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"docker",
"fdp",
"fair data protocol",
"fdp-play",
"fdp-playground"
],
"homepage": "https://github.com/fairDataSociety/fdp-play",
"bugs": {
"url": "https://github.com/fairDataSociety/fdp-play/issues/"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/fairDataSociety/fdp-play.git"
},
"bin": {
"fdp-play": "./dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && webpack --progress --env mode=production",
"start": "webpack --progress",
"test": "jest --verbose --config=jest.config.ts -i",
"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": "^8.3.0",
"bufferutil": "^4.0.8",
"chalk": "^4.1.2",
"dockerode": "^4.0.2",
"ethers": "^5.7.2",
"furious-commander": "^1.7.1",
"node-fetch": "^2",
"ora": "^5.3.0",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/plugin-transform-strict-mode": "^7.16.7",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@fluffy-spoon/substitute": "^1.208.0",
"@jest/types": "^28.1.0",
"@types/dockerode": "^3.3.24",
"@types/jest": "^27.4.1",
"@types/node": "^18.11.8",
"@types/node-fetch": "^2.6.11",
"@types/terser-webpack-plugin": "^5.2.0",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"babel-jest": "^29.2.2",
"babel-loader": "^9.1.3",
"depcheck": "^1.4.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"glob": "^8.0.3",
"jest": "^27.4.7",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.3",
"ts-node": "^10.8.1",
"typescript": "^5.3.3",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}