summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/package.json
blob: a959ab3d35891744853445607d18dcda67471d09 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
  "private": true,
  "name": "bank",
  "version": "0.1.0",
  "license": "AGPL-3.0-OR-LATER",
  "scripts": {
    "dev": "preact watch --port ${PORT:=9090} --no-sw --no-esm -c preact.mock.js",
    "build": "preact build --no-sw --no-esm -c preact.single-config.js --dest build && sh remove-link-stylesheet.sh",
    "serve": "sirv build --port ${PORT:=8080} --cors --single",
    "lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
    "test": "jest ./tests",
    "build-storybook": "build-storybook",
    "serve-single": "sirv single --port ${PORT:=8080} --cors --single",
    "pretty": "prettier --write src",
    "storybook": "start-storybook -p 6006"
  },
  "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": {
    "base64-inline-loader": "1.1.1",
    "date-fns": "2.25.0",
    "jed": "1.1.1",
    "preact": "^10.5.15",
    "preact-render-to-string": "^5.1.19",
    "preact-router": "^3.2.1",
    "qrcode-generator": "^1.4.4",
    "swr": "1.1"
  },
  "devDependencies": {
    "@babel/core": "7.18.9",
    "@babel/plugin-transform-modules-commonjs": "7.18.6",
    "@babel/plugin-transform-react-jsx-source": "7.18.6",
    "@babel/preset-env": "7.18.9",
    "@creativebulma/bulma-tooltip": "^1.2.0",
    "@gnu-taler/pogen": "^0.0.5",
    "@storybook/addon-a11y": "6.2.9",
    "@storybook/addon-actions": "6.2.9",
    "@storybook/addon-essentials": "6.2.9",
    "@storybook/addon-links": "6.2.9",
    "@storybook/preact": "6.2.9",
    "@storybook/preset-scss": "^1.0.3",
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/preact": "^2.0.1",
    "@testing-library/preact-hooks": "^1.1.0",
    "@types/enzyme": "^3.10.10",
    "@types/jest": "^27.0.2",
    "@typescript-eslint/eslint-plugin": "^5.3.0",
    "@typescript-eslint/parser": "^5.3.0",
    "babel-loader": "^8.2.2",
    "base64-inline-loader": "^1.1.1",
    "bulma": "^0.9.3",
    "bulma-checkbox": "^1.1.1",
    "bulma-radio": "^1.1.1",
    "enzyme": "^3.11.0",
    "enzyme-adapter-preact-pure": "^3.2.0",
    "eslint": "^8.1.0",
    "eslint-config-preact": "^1.2.0",
    "html-webpack-inline-chunk-plugin": "^1.1.1",
    "html-webpack-inline-source-plugin": "0.0.10",
    "html-webpack-skip-assets-plugin": "^1.0.1",
    "inline-chunk-html-plugin": "^1.1.1",
    "jest": "^27.3.1",
    "jest-fetch-mock": "^3.0.3",
    "jest-preset-preact": "^4.0.5",
    "jest-watch-typeahead": "^1.0.0",
    "jest-environment-jsdom": "^27.4.6",
    "jssha": "^3.2.0",
    "po2json": "^0.4.5",
    "preact-cli": "3.0.5",
    "sass": "1.32.13",
    "sass-loader": "^10",
    "script-ext-html-webpack-plugin": "^2.1.5",
    "sirv-cli": "^1.0.14",
    "typescript": "^4.4.4"
  },
  "jest": {
    "preset": "jest-preset-preact",
    "setupFiles": [
      "<rootDir>/tests/__mocks__/browserMocks.ts",
      "<rootDir>/tests/__mocks__/setupTests.ts"
    ]
  }
}