wallet-core/packages/demobank-ui/package.json

81 lines
1.7 KiB
JSON

{
"private": true,
"name": "bank",
"version": "0.1.0",
"license": "AGPL-3.0-OR-LATER",
"scripts": {
"build": "./build.mjs",
"check": "tsc",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"pretty": "prettier --write src"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
],
"rules": {
"@typescript-eslint/no-explicit-any": [
0
],
"@typescript-eslint/ban-ts-comment": [
1
],
"quotes": [
2,
"single",
{
"allowTemplateLiterals": true,
"avoidEscape": false
}
],
"indent": [
2,
2
],
"prefer-arrow-callback": [
2,
{
"allowNamedFunctions": false,
"allowUnboundThis": true
}
],
"curly": [
2,
"multi"
],
"prefer-template": [
1
]
}
},
"dependencies": {
"date-fns": "2.29.3",
"jed": "1.1.1",
"preact-render-to-string": "^5.2.6",
"preact-router": "^4.1.0",
"qrcode-generator": "^1.4.4",
"swr": "~1.3.0"
},
"devDependencies": {
"@creativebulma/bulma-tooltip": "^1.2.0",
"@gnu-taler/pogen": "^0.0.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"bulma": "^0.9.4",
"bulma-checkbox": "^1.1.1",
"bulma-radio": "^1.1.1",
"esbuild": "^0.15.12",
"esbuild-sass-plugin": "^2.4.0",
"eslint": "^8.26.0",
"eslint-config-preact": "^1.2.0",
"po2json": "^0.4.5",
"preact": "10.11.2",
"typescript": "^4.4.4"
}
}