74 lines
2.3 KiB
JSON
74 lines
2.3 KiB
JSON
{
|
|
"private": true,
|
|
"name": "anastasis-webui",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "preact build --no-sw --no-esm --no-inline-css",
|
|
"serve": "sirv build --port ${PORT:=8080} --cors --single",
|
|
"dev": "preact watch --port ${PORT:=8080} --no-sw --no-esm",
|
|
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
"test": "jest ./tests",
|
|
"build-storybook": "build-storybook",
|
|
"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",
|
|
"storybook": "start-storybook -p 6006"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"preact",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"ignorePatterns": [
|
|
"build/"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@gnu-taler/taler-util": "workspace:*",
|
|
"anastasis-core": "workspace:^0.0.1",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@creativebulma/bulma-tooltip": "^1.2.0",
|
|
"@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",
|
|
"@storybook/preset-scss": "^1.0.3",
|
|
"@types/enzyme": "^3.10.10",
|
|
"@types/jest": "^27.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.3.0",
|
|
"@typescript-eslint/parser": "^5.3.0",
|
|
"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",
|
|
"jest": "^27.3.1",
|
|
"jest-preset-preact": "^4.0.5",
|
|
"jssha": "^3.2.0",
|
|
"preact-cli": "^3.3.1",
|
|
"sass": "1.32.13",
|
|
"sass-loader": "^10",
|
|
"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"
|
|
]
|
|
}
|
|
} |