summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/package.json
blob: 831ec3978bff730c9051190131516523c2fcf45d (plain)
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
{
  "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"
  }
}