Files
bee-worker b3137fbef1 chore(master): release 0.35.1 (#732)
* chore(master): release 0.35.1
* docs: update changelog.md for v0.53.1 bug fixes

---------

Co-authored-by: Ferenc Sárai <sarai.ferenc@gmail.com>
2026-04-10 11:25:29 +02:00

171 lines
4.7 KiB
JSON

{
"name": "@ethersphere/bee-dashboard",
"version": "0.35.1",
"description": "An app which helps users to setup their Bee node and do actions like cash out cheques",
"homepage": ".",
"bin": {
"bee-dashboard": "./serve.js"
},
"main": "lib/App.cjs.js",
"browser": "lib/App.js",
"types": "lib/App.d.ts",
"exports": {
".": {
"types": "./lib/App.d.ts",
"require": "./lib/App.cjs.js",
"import": "./lib/App.js",
"default": "./lib/App.cjs.js"
},
"./style.css": "./lib/App.css"
},
"bugs": {
"url": "https://github.com/ethersphere/bee-dashboard/issues/"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/bee-dashboard.git"
},
"scripts": {
"prepublishOnly": "NODE_ENV=production pnpm run prepare",
"prepare": "pnpm run build && pnpm run build:component",
"start": "vite",
"desktop": "node ./desktop.mjs",
"build": "rimraf ./build && vite build",
"build:component": "rimraf ./lib && BUILD_MODE=component vite build",
"test": "jest",
"test:ui": "node tests/ui/index.js",
"serve": "node ./serve.js",
"depcheck": "depcheck .",
"lint": "eslint . --report-unused-disable-directives --no-cache --max-warnings=5",
"lint:fix": "pnpm run lint --fix",
"check:types": "tsc --project tsconfig.lib.json",
"update-map-data": "node ./utils/update-map-data.js",
"init:husky": "pnpm husky install"
},
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19",
"react-router": ">=7",
"react-router-dom": ">=7",
"tss-react": ">=4"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@ethersphere/bee-js": "^11.1.1",
"@formbricks/js": "^4.3.0",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@solarpunkltd/file-manager-lib": "^1.0.8",
"axios": "^0.30.2",
"bignumber.js": "^9.3.1",
"dotted-map": "^2.2.3",
"ethers": "^6.16.0",
"file-saver": "^2.0.5",
"formik": "2.4.9",
"formik-mui": "^5.0.0-alpha.1",
"jszip": "^3.10.1",
"notistack": "^3.0.2",
"opener": "1.5.2",
"react-dropzone": "^14.4.0",
"react-qr-code": "^2.0.18",
"react-syntax-highlighter": "16.1.0",
"remixicon-react": "^1.0.0",
"serve-handler": "6.1.6"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.10",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.10",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/file-saver": "2.0.5",
"@types/jest": "30.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-syntax-highlighter": "15.5.13",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"@vitejs/plugin-react": "^5.1.2",
"cors": "^2.8.5",
"depcheck": "^1.4.7",
"env-paths": "^3.0.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.14.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "7.15.4",
"express": "^5.2.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"open": "^11.0.0",
"prettier": "3.8.1",
"puppeteer": "^24.37.1",
"rimraf": "^6.1.2",
"sass": "^1.97.3",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-node-polyfills": "^0.25.0",
"web-vitals": "5.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"puppeteer",
"unrs-resolver"
]
},
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p"
],
"files": [
"lib",
"build",
"serve.js"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0",
"pnpm": ">=10.0.0",
"bee": "2.7.0"
}
}