2018-05-13 09:57:47 +03:00
|
|
|
{
|
2019-10-05 20:08:50 +03:00
|
|
|
"name": "shlink-web-client",
|
2018-08-26 11:30:20 +03:00
|
|
|
"description": "A React-based progressive web application for shlink",
|
2018-06-14 20:42:42 +03:00
|
|
|
"private": false,
|
2019-04-28 13:07:09 +03:00
|
|
|
"homepage": "",
|
2019-08-24 17:38:44 +03:00
|
|
|
"repository": "https://github.com/shlinkio/shlink-web-client",
|
|
|
|
"license": "MIT",
|
2023-12-19 01:05:17 +03:00
|
|
|
"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",
|
2023-08-14 13:15:57 +03:00
|
|
|
"lint:css": "stylelint src/*.scss src/**/*.scss",
|
|
|
|
"lint:js": "eslint --ext .js,.ts,.tsx src 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",
|
2023-03-19 12:32:11 +03:00
|
|
|
"types": "tsc",
|
2022-12-24 12:18:26 +03:00
|
|
|
"start": "vite serve --host=0.0.0.0",
|
2023-03-08 11:18:32 +03:00
|
|
|
"preview": "vite preview --host=0.0.0.0",
|
2023-03-19 12:32:11 +03:00
|
|
|
"build": "npm run types && vite build && node scripts/replace-version.mjs",
|
2022-05-15 09:32:36 +03:00
|
|
|
"build:dist": "npm run build && node scripts/create-dist-file.mjs",
|
2023-05-27 12:36:18 +03:00
|
|
|
"test": "vitest run --run",
|
2023-05-27 15:15:38 +03:00
|
|
|
"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": {
|
2023-12-02 11:27:59 +03:00
|
|
|
"@fortawesome/fontawesome-free": "^6.5.1",
|
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.5.1",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.5.1",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.1",
|
2022-10-03 21:06:57 +03:00
|
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
2024-01-28 11:27:48 +03:00
|
|
|
"@json2csv/plainjs": "^7.0.5",
|
2024-01-27 11:57:17 +03:00
|
|
|
"@reduxjs/toolkit": "^2.1.0",
|
2023-12-19 01:05:17 +03:00
|
|
|
"@shlinkio/data-manipulation": "^1.0.3",
|
2024-01-28 11:28:17 +03:00
|
|
|
"@shlinkio/shlink-frontend-kit": "^0.4.2",
|
|
|
|
"@shlinkio/shlink-js-sdk": "^0.2.2",
|
2024-01-29 19:54:10 +03:00
|
|
|
"@shlinkio/shlink-web-component": "^0.5.0",
|
2023-08-10 21:32:18 +03:00
|
|
|
"bootstrap": "5.2.3",
|
2022-10-03 21:06:57 +03:00
|
|
|
"bottlejs": "^2.0.1",
|
2023-12-30 11:55:25 +03:00
|
|
|
"clsx": "^2.1.0",
|
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",
|
2024-01-27 11:56:20 +03:00
|
|
|
"date-fns": "^3.3.1",
|
2022-10-05 00:09:30 +03:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-04-20 23:57:49 +03:00
|
|
|
"react-external-link": "^2.2.0",
|
2024-01-13 11:17:35 +03:00
|
|
|
"react-redux": "^9.1.0",
|
2024-01-20 11:23:22 +03:00
|
|
|
"react-router-dom": "^6.21.3",
|
2024-01-20 11:11:31 +03:00
|
|
|
"reactstrap": "^9.2.2",
|
2022-10-05 00:09:30 +03:00
|
|
|
"redux-localstorage-simple": "^2.5.1",
|
2023-09-16 10:08:52 +03:00
|
|
|
"uuid": "^9.0.1",
|
2023-08-27 09:38:57 +03:00
|
|
|
"workbox-core": "^7.0.0",
|
2023-08-19 18:25:51 +03:00
|
|
|
"workbox-expiration": "^7.0.0",
|
2023-08-19 18:35:58 +03:00
|
|
|
"workbox-precaching": "^7.0.0",
|
2023-08-19 18:26:54 +03:00
|
|
|
"workbox-routing": "^7.0.0",
|
2023-08-19 18:33:03 +03:00
|
|
|
"workbox-strategies": "^7.0.0"
|
2018-08-04 11:20:19 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-26 11:24:29 +03:00
|
|
|
"@shlinkio/eslint-config-js-coding-standard": "~2.3.0",
|
2023-08-08 12:15:16 +03:00
|
|
|
"@shlinkio/stylelint-config-css-coding-standard": "~1.1.1",
|
2024-01-27 11:55:43 +03:00
|
|
|
"@testing-library/jest-dom": "^6.3.0",
|
2023-11-18 11:32:04 +03:00
|
|
|
"@testing-library/react": "^14.1.2",
|
2023-12-30 11:54:31 +03:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2023-08-08 12:24:19 +03:00
|
|
|
"@total-typescript/shoehorn": "^0.1.1",
|
2024-01-20 11:10:04 +03:00
|
|
|
"@types/react": "^18.2.48",
|
2023-12-16 11:50:41 +03:00
|
|
|
"@types/react-dom": "^18.2.18",
|
2024-01-28 11:36:01 +03:00
|
|
|
"@types/uuid": "^9.0.8",
|
2023-12-10 21:38:19 +03:00
|
|
|
"@vitejs/plugin-react": "^4.2.1",
|
2024-01-28 11:28:44 +03:00
|
|
|
"@vitest/coverage-v8": "^1.2.2",
|
2022-12-26 00:31:28 +03:00
|
|
|
"adm-zip": "^0.5.10",
|
2023-12-23 11:12:37 +03:00
|
|
|
"axe-core": "^4.8.3",
|
2023-08-08 12:24:19 +03:00
|
|
|
"chalk": "^5.3.0",
|
2023-12-16 11:51:30 +03:00
|
|
|
"eslint": "^8.56.0",
|
2023-08-14 13:15:57 +03:00
|
|
|
"history": "^5.3.0",
|
2024-01-27 11:56:31 +03:00
|
|
|
"jsdom": "^24.0.0",
|
2024-01-20 11:11:14 +03:00
|
|
|
"sass": "^1.70.0",
|
2023-10-21 10:28:25 +03:00
|
|
|
"stylelint": "^15.11.0",
|
2023-12-10 12:48:36 +03:00
|
|
|
"typescript": "^5.3.3",
|
2024-01-20 01:30:17 +03:00
|
|
|
"vite": "^5.0.12",
|
2024-01-27 11:57:05 +03:00
|
|
|
"vite-plugin-pwa": "^0.17.5",
|
2024-01-28 11:28:44 +03:00
|
|
|
"vitest": "^1.2.2"
|
2018-05-13 09:57:47 +03:00
|
|
|
},
|
2019-01-06 00:54:54 +03:00
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
|
|
|
]
|
2018-05-13 09:57:47 +03:00
|
|
|
}
|