shlink-web-client/package.json

97 lines
3.2 KiB
JSON
Raw Normal View History

2018-05-13 09:57:47 +03:00
{
2019-10-05 20:08:50 +03:00
"name": "shlink-web-client",
"description": "A React-based progressive web application for shlink",
2018-06-14 20:42:42 +03:00
"private": false,
"homepage": "",
"repository": "https://github.com/shlinkio/shlink-web-client",
"license": "MIT",
"type": "module",
2018-08-04 11:20:19 +03:00
"scripts": {
2020-12-30 22:10:37 +03:00
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint src/*.scss src/**/*.scss",
2024-06-20 15:56:32 +03:00
"lint:js": "eslint src test config/test",
2021-08-16 14:21:53 +03:00
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
2019-04-14 22:58:10 +03:00
"lint:css:fix": "npm run lint:css -- --fix",
2021-08-16 14:21:53 +03:00
"lint:js:fix": "npm run lint:js -- --fix",
"types": "tsc",
"start": "vite serve --host=0.0.0.0",
"preview": "vite preview --host=0.0.0.0",
"build": "npm run types && vite build && node scripts/replace-version.mjs",
"build:dist": "npm run build && node scripts/create-dist-file.mjs",
2023-05-27 12:36:18 +03:00
"test": "vitest run --run",
"test:watch": "vitest --watch",
2023-05-27 13:45:06 +03:00
"test:ci": "npm run test -- --coverage",
2023-02-17 22:09:31 +03:00
"test:verbose": "npm run test -- --verbose"
2018-08-04 11:20:19 +03:00
},
2018-05-13 09:57:47 +03:00
"dependencies": {
Bump the fontawesome group with 5 updates Bumps the fontawesome group with 5 updates: | Package | From | To | | --- | --- | --- | | [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` | | [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` | | [@fortawesome/free-brands-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` | | [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` | | [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.1` | `6.5.2` | Updates `@fortawesome/fontawesome-free` from 6.5.1 to 6.5.2 - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.5.1...6.5.2) Updates `@fortawesome/fontawesome-svg-core` from 6.5.1 to 6.5.2 - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.5.1...6.5.2) Updates `@fortawesome/free-brands-svg-icons` from 6.5.1 to 6.5.2 - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.5.1...6.5.2) Updates `@fortawesome/free-regular-svg-icons` from 6.5.1 to 6.5.2 - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.5.1...6.5.2) Updates `@fortawesome/free-solid-svg-icons` from 6.5.1 to 6.5.2 - [Release notes](https://github.com/FortAwesome/Font-Awesome/releases) - [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md) - [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.5.1...6.5.2) --- updated-dependencies: - dependency-name: "@fortawesome/fontawesome-free" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fontawesome - dependency-name: "@fortawesome/fontawesome-svg-core" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fontawesome - dependency-name: "@fortawesome/free-brands-svg-icons" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fontawesome - dependency-name: "@fortawesome/free-regular-svg-icons" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fontawesome - dependency-name: "@fortawesome/free-solid-svg-icons" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fontawesome ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-06 10:25:31 +03:00
"@fortawesome/fontawesome-free": "^6.5.2",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@json2csv/plainjs": "^7.0.6",
"@reduxjs/toolkit": "^2.2.6",
"@shlinkio/data-manipulation": "^1.0.3",
"@shlinkio/shlink-frontend-kit": "^0.5.1",
"@shlinkio/shlink-js-sdk": "^1.1.0",
"@shlinkio/shlink-web-component": "^0.7.0",
"bootstrap": "5.2.3",
2022-10-03 21:06:57 +03:00
"bottlejs": "^2.0.1",
"clsx": "^2.1.1",
2023-08-08 14:26:45 +03:00
"compare-versions": "^6.1.0",
2022-03-31 21:18:05 +03:00
"csvtojson": "^2.0.10",
"date-fns": "^3.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-external-link": "^2.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.24.1",
"reactstrap": "^9.2.2",
2022-10-05 00:09:30 +03:00
"redux-localstorage-simple": "^2.5.1",
"uuid": "^10.0.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0"
2018-08-04 11:20:19 +03:00
},
"devDependencies": {
2024-06-20 15:56:32 +03:00
"@shlinkio/eslint-config-js-coding-standard": "~3.0.0",
2023-08-08 12:15:16 +03:00
"@shlinkio/stylelint-config-css-coding-standard": "~1.1.1",
Bump the eslint-plugins group with 3 updates Bumps the eslint-plugins group with 3 updates: [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin), [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `@stylistic/eslint-plugin` from 2.2.2 to 2.3.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.3.0/packages/eslint-plugin) Updates `eslint-plugin-simple-import-sort` from 12.1.0 to 12.1.1 - [Changelog](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md) - [Commits](https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v12.1.0...v12.1.1) Updates `typescript-eslint` from 7.13.1 to 7.15.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.15.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@stylistic/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins - dependency-name: eslint-plugin-simple-import-sort dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint-plugins - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-06 10:57:51 +03:00
"@stylistic/eslint-plugin": "^2.3.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/shoehorn": "^0.1.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"adm-zip": "^0.5.14",
"axe-core": "^4.9.1",
2023-08-08 12:24:19 +03:00
"chalk": "^5.3.0",
"eslint": "^8.57.0",
Bump the eslint-plugins group with 3 updates Bumps the eslint-plugins group with 3 updates: [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin), [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) and [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react). Updates `@stylistic/eslint-plugin` from 2.2.0 to 2.2.2 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.2.2/packages/eslint-plugin) Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.9.0 - [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases) - [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md) - [Commits](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/compare/v6.8.0...v6.9.0) Updates `eslint-plugin-react` from 7.34.2 to 7.34.3 - [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases) - [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.2...v7.34.3) --- updated-dependencies: - dependency-name: "@stylistic/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint-plugins - dependency-name: eslint-plugin-jsx-a11y dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins - dependency-name: eslint-plugin-react dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint-plugins ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-20 20:42:46 +03:00
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
2024-06-06 18:49:12 +03:00
"eslint-plugin-react-hooks": "^4.6.2",
Bump the eslint-plugins group with 3 updates Bumps the eslint-plugins group with 3 updates: [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin), [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `@stylistic/eslint-plugin` from 2.2.2 to 2.3.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.3.0/packages/eslint-plugin) Updates `eslint-plugin-simple-import-sort` from 12.1.0 to 12.1.1 - [Changelog](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md) - [Commits](https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v12.1.0...v12.1.1) Updates `typescript-eslint` from 7.13.1 to 7.15.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.15.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@stylistic/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins - dependency-name: eslint-plugin-simple-import-sort dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint-plugins - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-06 10:57:51 +03:00
"eslint-plugin-simple-import-sort": "^12.1.1",
"history": "^5.3.0",
"jsdom": "^24.1.0",
"sass": "^1.77.6",
"stylelint": "^15.11.0",
"typescript": "^5.5.3",
Bump the eslint-plugins group with 3 updates Bumps the eslint-plugins group with 3 updates: [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin), [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `@stylistic/eslint-plugin` from 2.2.2 to 2.3.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.3.0/packages/eslint-plugin) Updates `eslint-plugin-simple-import-sort` from 12.1.0 to 12.1.1 - [Changelog](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md) - [Commits](https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v12.1.0...v12.1.1) Updates `typescript-eslint` from 7.13.1 to 7.15.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.15.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@stylistic/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins - dependency-name: eslint-plugin-simple-import-sort dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint-plugins - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-plugins ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-06 10:57:51 +03:00
"typescript-eslint": "^7.15.0",
"vite": "^5.3.2",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^1.2.2"
2018-05-13 09:57:47 +03:00
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
2018-05-13 09:57:47 +03:00
}