mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-16 13:01:05 +02:00
* build(deps): update dependencies @tailwindcss/vite 4.2.2 → 4.2.4 @tanstack/eslint-plugin-query 5.99.0 → 5.100.1 @tanstack/react-query 5.99.0 → 5.100.1 prettier-plugin-tailwindcss 0.7.2 → 0.7.3 react-i18next 17.0.2 → 17.0.4 react-router-dom 7.14.1 → 7.14.2 tailwindcss 4.2.2 → 4.2.4 typescript 6.0.2 → 6.0.3 @scure/bip32 2.0.1 → 2.2.0 @scure/bip39 2.0.1 → 2.2.0 eslint-plugin-react-hooks 7.0.1 → 7.1.1 lucide-react 1.8.0 → 1.9.0 react-hook-form 7.72.1 → 7.73.1 typescript-eslint 8.58.2 → 8.59.0 * chore(build): fix violations after eslint plugin updates * chore: check window availability in useIsMobile * build(deps): update dependencies @tanstack/eslint-plugin-query 5.100.1 → 5.100.6 @tanstack/react-query 5.100.1 → 5.100.6 prettier-plugin-tailwindcss 0.7.3 → 0.7.4 react-i18next 17.0.4 → 17.0.6 typescript-eslint 8.59.0 → 8.59.1 * build(deps): update dependencies jsdom 29.0.2 → 29.1.0 lucide-react 1.9.0 → 1.13.0 prettier-plugin-tailwindcss 0.7.4 → 0.8.0 react-hook-form 7.73.1 → 7.74.0 * build(ci): check format * chore(ci): run pipeline for master and devel
149 lines
5.7 KiB
JSON
149 lines
5.7 KiB
JSON
{
|
|
"name": "jam",
|
|
"version": "2.0.0-SNAPSHOT",
|
|
"private": true,
|
|
"description": "Your sats. Your privacy. Your profit.",
|
|
"repository": "git@github.com:joinmarket-webui/jam.git",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=24.11.1",
|
|
"npm": ">=11.6.2"
|
|
},
|
|
"scripts": {
|
|
"dev": "VITE_JAM_DEV_MODE=true vite",
|
|
"dev:secondary": "JAM_BACKEND=jam-standalone JAM_API_PORT=29080 npm run dev",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "npm run lint:check",
|
|
"lint:check": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
"format": "npm run lint:fix && npm run format:write",
|
|
"preview": "vite preview",
|
|
"storybook:up": "storybook dev -p 6006",
|
|
"storybook:build": "storybook build",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --project unit",
|
|
"test:storybook": "vitest run --project storybook",
|
|
"check": "npm run format && npm run test && npm run build",
|
|
"regtest:build": "npm run regtest:clear && docker compose --env-file docker/regtest/.env.example --file docker/regtest/docker-compose.yml build --pull",
|
|
"regtest:rebuild": "rm -rf docker/regtest/.tmp && npm run regtest:build -- --no-cache",
|
|
"regtest:clear": "docker compose --env-file docker/regtest/.env.example --file docker/regtest/docker-compose.yml down --volumes --remove-orphans",
|
|
"regtest:up": "./docker/regtest/prepare-setup.sh && docker compose --env-file docker/regtest/.env.generated --file docker/regtest/docker-compose.yml up --detach --wait --wait-timeout 120",
|
|
"regtest:logs": "docker compose --env-file docker/regtest/.env.example --file docker/regtest/docker-compose.yml logs --follow",
|
|
"regtest:down": "docker compose --env-file docker/regtest/.env.example --file docker/regtest/docker-compose.yml down",
|
|
"regtest:logs:jmwalletd": "docker exec -t jm_regtest_joinmarket tail -f /var/log/jam/jmwalletd_stdout.log",
|
|
"regtest:logs:schedule": "docker exec -t jm_regtest_joinmarket tail -f /root/.joinmarket/logs/TUMBLE.schedule",
|
|
"regtest:logs:directory_node": "docker exec -t jm_regtest_joinmarket_directory_node tail -f /var/log/jam/directory_node_stdout.log -n 200",
|
|
"regtest:init": "./docker/regtest/init-setup.sh",
|
|
"regtest:mine": "watch -n 11 ./docker/regtest/mine-block.sh"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,css,md}": "prettier --write"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
"> 0.5%",
|
|
"last 2 versions",
|
|
"not dead",
|
|
"not op_mini all"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "5.2.2",
|
|
"@joinmarket-webui/joinmarket-api-ts": "0.3.0",
|
|
"@noble/hashes": "2.2.0",
|
|
"@radix-ui/react-accordion": "1.2.12",
|
|
"@radix-ui/react-avatar": "1.1.11",
|
|
"@radix-ui/react-checkbox": "1.3.3",
|
|
"@radix-ui/react-dialog": "1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "2.1.16",
|
|
"@radix-ui/react-label": "2.1.8",
|
|
"@radix-ui/react-popover": "1.1.15",
|
|
"@radix-ui/react-radio-group": "1.3.8",
|
|
"@radix-ui/react-select": "2.2.6",
|
|
"@radix-ui/react-separator": "1.1.8",
|
|
"@radix-ui/react-slot": "1.2.4",
|
|
"@radix-ui/react-switch": "1.2.6",
|
|
"@radix-ui/react-tabs": "1.1.13",
|
|
"@radix-ui/react-tooltip": "1.2.8",
|
|
"@scure/bip32": "2.2.0",
|
|
"@scure/bip39": "2.2.0",
|
|
"@tailwindcss/vite": "4.2.4",
|
|
"@tanstack/match-sorter-utils": "8.19.4",
|
|
"@tanstack/react-query": "5.100.6",
|
|
"@tanstack/react-table": "8.21.3",
|
|
"bitcoin-address-validation": "3.0.0",
|
|
"class-variance-authority": "0.7.1",
|
|
"clsx": "2.1.1",
|
|
"html5-qrcode": "2.3.8",
|
|
"i18next-browser-languagedetector": "8.2.1",
|
|
"lucide-react": "1.13.0",
|
|
"next-themes": "0.4.6",
|
|
"qrcode": "1.5.4",
|
|
"radix-ui": "1.4.3",
|
|
"react": "19.2.5",
|
|
"react-dom": "19.2.5",
|
|
"react-hook-form": "7.74.0",
|
|
"react-i18next": "17.0.6",
|
|
"react-router-dom": "7.14.2",
|
|
"react-use-websocket": "4.13.0",
|
|
"sonner": "2.0.7",
|
|
"tailwind-merge": "3.5.0",
|
|
"tailwindcss": "4.2.4",
|
|
"tw-animate-css": "1.4.0",
|
|
"yup": "1.7.1",
|
|
"zustand": "5.0.12"
|
|
},
|
|
"devDependencies": {
|
|
"@chromatic-com/storybook": "5.1.2",
|
|
"@eslint/js": "9.39.4",
|
|
"@playwright/test": "1.59.1",
|
|
"@storybook/addon-a11y": "10.3.5",
|
|
"@storybook/addon-docs": "10.3.5",
|
|
"@storybook/addon-vitest": "10.3.5",
|
|
"@storybook/react-vite": "10.3.5",
|
|
"@tanstack/eslint-plugin-query": "5.100.6",
|
|
"@testing-library/jest-dom": "6.9.1",
|
|
"@testing-library/react": "16.3.2",
|
|
"@testing-library/user-event": "14.6.1",
|
|
"@trivago/prettier-plugin-sort-imports": "6.0.2",
|
|
"@types/node": "24.10.15",
|
|
"@types/qrcode": "1.5.6",
|
|
"@types/react": "19.2.14",
|
|
"@types/react-dom": "19.2.3",
|
|
"@vitejs/plugin-react": "5.2.0",
|
|
"@vitest/browser": "4.0.9",
|
|
"@vitest/browser-playwright": "4.0.9",
|
|
"@vitest/coverage-v8": "4.0.9",
|
|
"conventional-changelog": "7.2.0",
|
|
"eslint": "9.39.4",
|
|
"eslint-plugin-compat": "7.0.1",
|
|
"eslint-plugin-react-hooks": "7.1.1",
|
|
"eslint-plugin-react-refresh": "0.5.2",
|
|
"eslint-plugin-storybook": "10.3.5",
|
|
"eslint-plugin-unicorn": "64.0.0",
|
|
"globals": "17.5.0",
|
|
"husky": "9.1.7",
|
|
"jsdom": "29.1.0",
|
|
"lint-staged": "16.4.0",
|
|
"prettier": "3.8.3",
|
|
"prettier-plugin-tailwindcss": "0.8.0",
|
|
"storybook": "10.3.5",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "8.59.1",
|
|
"vite": "7.3.2",
|
|
"vitest": "4.0.9"
|
|
},
|
|
"overrides": {
|
|
"storybook": "$storybook",
|
|
"@joinmarket-webui/joinmarket-api-ts": {
|
|
"@tanstack/react-query": "$@tanstack/react-query"
|
|
}
|
|
}
|
|
}
|