wallet-core/packages/anastasis-webui/package.json

64 lines
2.0 KiB
JSON
Raw Normal View History

2021-10-11 10:58:55 +02:00
{
"private": true,
"name": "@gnu-taler/anastasis-webui",
"version": "0.0.2",
2021-10-11 10:58:55 +02:00
"license": "MIT",
"scripts": {
2021-11-12 18:50:09 +01:00
"build": "preact build --no-sw --no-esm --no-inline-css",
2021-11-10 14:20:52 +01:00
"serve": "sirv build --port ${PORT:=8080} --cors --single",
"dev": "preact watch --port ${PORT:=8080} --no-sw --no-esm",
2021-10-11 10:58:55 +02:00
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
2022-01-31 18:56:12 +01:00
"test": "echo no tests",
2021-10-22 06:31:46 +02:00
"build-storybook": "build-storybook",
2021-11-10 14:20:52 +01:00
"build-single": "preact build --no-sw --no-esm -c preact.single-config.js --dest single && sh remove-link-stylesheet.sh",
"serve-single": "sirv single --port ${PORT:=8080} --cors --single",
"pretty": "prettier --write src",
2021-10-22 06:31:46 +02:00
"storybook": "start-storybook -p 6006"
2021-10-11 10:58:55 +02:00
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
2021-12-01 18:28:39 +01:00
"@gnu-taler/anastasis-core": "workspace:*",
"@gnu-taler/taler-util": "workspace:*",
2021-11-10 14:20:52 +01:00
"base64-inline-loader": "1.1.1",
"date-fns": "2.28.0",
2021-10-19 15:56:52 +02:00
"jed": "1.1.1",
2021-11-04 17:02:56 +01:00
"preact": "^10.5.15",
"preact-render-to-string": "^5.1.19",
"preact-router": "^3.2.1",
"qrcode-generator": "^1.4.4"
2021-10-11 10:58:55 +02:00
},
"devDependencies": {
2021-10-19 15:56:52 +02:00
"@creativebulma/bulma-tooltip": "^1.2.0",
2021-11-04 17:02:56 +01:00
"@storybook/addon-a11y": "^6.3.12",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/preact": "^6.3.12",
2021-10-22 06:31:46 +02:00
"@storybook/preset-scss": "^1.0.3",
"@types/enzyme": "^3.10.11",
2021-11-04 17:02:56 +01:00
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
2021-10-19 15:56:52 +02:00
"bulma": "^0.9.3",
"bulma-checkbox": "^1.1.1",
"bulma-radio": "^1.1.1",
2021-10-11 10:58:55 +02:00
"enzyme": "^3.11.0",
2021-11-04 17:02:56 +01:00
"enzyme-adapter-preact-pure": "^3.2.0",
"eslint": "^8.1.0",
"eslint-config-preact": "^1.2.0",
2021-11-02 14:12:52 +01:00
"jssha": "^3.2.0",
2021-11-04 17:02:56 +01:00
"preact-cli": "^3.3.1",
2021-11-04 17:09:17 +01:00
"sass": "1.32.13",
2021-11-04 17:02:56 +01:00
"sass-loader": "^10",
"sirv-cli": "^1.0.14",
"typescript": "^4.5.4"
2021-10-11 10:58:55 +02:00
}
2022-01-31 18:56:12 +01:00
}