2020-12-24 02:37:23 +03:30
|
|
|
{
|
|
|
|
|
"name": "project",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
2024-12-24 03:32:55 +01:00
|
|
|
"type": "module",
|
2023-03-11 18:05:58 +01:00
|
|
|
"scripts": {
|
2024-03-31 23:36:39 +02:00
|
|
|
"ci": "yarn install --frozen-lockfile",
|
2023-08-11 17:30:22 +02:00
|
|
|
"dev": "vite",
|
|
|
|
|
"preview": "vite preview",
|
2023-06-05 00:58:21 +02:00
|
|
|
"build": "vite build",
|
2023-08-11 17:30:22 +02:00
|
|
|
"test": "node -e \"console.log('imagine')\"",
|
2023-03-11 18:05:58 +01:00
|
|
|
"build-md5": "find build -type f | sort | xargs md5sum | awk '{ print $1 }' | tr -d '\n' | md5sum| awk '{ print $1 }' > buildZip/md5sum ",
|
2024-01-05 20:11:29 +01:00
|
|
|
"build-zip": "cd build && rev=$(git rev-list HEAD --count) && echo r$rev > revision && zip -9 -r ../buildZip/Suwayomi-WebUI-r$rev *",
|
2024-03-19 22:46:39 +01:00
|
|
|
"lint": "eslint src --ext .ts,.tsx,.js,.jsx --max-warnings=0 --cache",
|
2025-02-17 02:45:02 +01:00
|
|
|
"createCommitChangelog": "tsx tools/scripts/release/createCommitChangelog.ts",
|
|
|
|
|
"createTranslationChangelog": "tsx tools/scripts/release/createTranslationChangelog.ts",
|
|
|
|
|
"createReleaseChangelog": "tsx tools/scripts/release/createReleaseChangelog.ts",
|
2024-12-25 14:34:13 +01:00
|
|
|
"updateDeps": "tsx tools/scripts/updateDependencies.ts",
|
2023-08-15 22:13:28 +02:00
|
|
|
"gql:codegen-base": "graphql-codegen --config gql_codegen.ts",
|
2024-12-25 14:34:13 +01:00
|
|
|
"gql:codegen-formatter": "tsx tools/scripts/codegenFormatter.ts",
|
2024-03-08 22:42:48 +01:00
|
|
|
"gql:codegen": "yarn gql:codegen-base & yarn gql:codegen-formatter",
|
2025-02-17 02:45:02 +01:00
|
|
|
"i18n:gen-resources": "tsx tools/scripts/weblate/generatei18nResources.ts",
|
|
|
|
|
"dayjs:gen-locales-array": "tsx tools/scripts/dayjs/generateDayJsLocales.ts",
|
|
|
|
|
"dayjs:gen-locales-import": "tsx tools/scripts/dayjs/generateDayJsLocalesImport.ts",
|
2024-06-25 17:11:33 +02:00
|
|
|
"dayjs:gen-locales": "yarn dayjs:gen-locales-array && yarn dayjs:gen-locales-import",
|
2024-03-08 22:42:48 +01:00
|
|
|
"prepare": "husky"
|
2023-03-11 18:05:58 +01:00
|
|
|
},
|
2024-03-08 23:31:56 +01:00
|
|
|
"engines": {
|
2024-12-24 13:02:35 +01:00
|
|
|
"node": "22.12.0"
|
2024-03-08 23:31:56 +01:00
|
|
|
},
|
2024-03-08 22:42:48 +01:00
|
|
|
"lint-staged": {
|
2024-04-22 22:16:50 +02:00
|
|
|
"*.{ts,tsx,js,jsx}": "eslint --fix"
|
2024-03-08 22:42:48 +01:00
|
|
|
},
|
2020-12-24 02:37:23 +03:30
|
|
|
"dependencies": {
|
2025-04-09 22:39:28 +02:00
|
|
|
"@apollo/client": "3.13.8",
|
2025-04-18 14:28:06 +02:00
|
|
|
"@dnd-kit/core": "6.3.1",
|
|
|
|
|
"@dnd-kit/sortable": "10.0.0",
|
|
|
|
|
"@dnd-kit/utilities": "3.2.2",
|
2024-12-23 23:47:42 +01:00
|
|
|
"@emotion/cache": "11.14.0",
|
|
|
|
|
"@emotion/react": "11.14.0",
|
|
|
|
|
"@emotion/styled": "11.14.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@fontsource/roboto": "5.2.5",
|
2024-12-23 23:47:42 +01:00
|
|
|
"@juggle/resize-observer": "3.4.0",
|
2024-05-11 00:42:06 +02:00
|
|
|
"@loadable/component": "5.16.4",
|
2025-05-02 17:56:56 +02:00
|
|
|
"@mantine/hooks": "^7.17.5",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@mui/icons-material": "7.0.2",
|
|
|
|
|
"@mui/material": "7.0.2",
|
|
|
|
|
"@mui/system": "7.0.2",
|
|
|
|
|
"@mui/utils": "7.0.2",
|
|
|
|
|
"@mui/x-date-pickers": "8.0.0",
|
2025-01-26 03:53:19 +01:00
|
|
|
"@vibrant/color": "4.0.0",
|
2024-12-24 14:19:40 +01:00
|
|
|
"apollo-upload-client": "18.0.1",
|
2024-12-24 03:58:38 +01:00
|
|
|
"csstype": "3.1.3",
|
2024-09-03 17:12:38 +02:00
|
|
|
"dayjs": "1.11.13",
|
2025-04-09 22:39:28 +02:00
|
|
|
"fast-average-color": "9.5.0",
|
2024-12-24 12:24:01 +01:00
|
|
|
"file-selector": "2.1.2",
|
2024-12-23 23:47:42 +01:00
|
|
|
"graphql": "16.10.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"graphql-sock": "1.0.1",
|
2024-04-14 15:10:34 +02:00
|
|
|
"graphql-tag": "2.12.6",
|
2025-02-16 23:19:38 +01:00
|
|
|
"graphql-ws": "6.0.4",
|
2025-04-09 22:39:28 +02:00
|
|
|
"html-react-parser": "5.2.3",
|
|
|
|
|
"i18next": "25.0.0",
|
|
|
|
|
"i18next-browser-languagedetector": "8.0.4",
|
2025-02-16 23:19:38 +01:00
|
|
|
"i18next-http-backend": "3.0.2",
|
|
|
|
|
"jsonrepair": "3.12.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"material-ui-popup-state": "5.3.5",
|
2025-02-16 23:19:38 +01:00
|
|
|
"mui-nested-menu": "4.0.1",
|
2025-01-26 03:53:19 +01:00
|
|
|
"node-vibrant": "4.0.3",
|
2025-02-16 23:19:38 +01:00
|
|
|
"notistack": "3.0.2",
|
2024-12-23 23:47:42 +01:00
|
|
|
"p-limit": "6.2.0",
|
2025-04-18 20:42:41 +02:00
|
|
|
"react": "19.1.0",
|
|
|
|
|
"react-dom": "19.1.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"react-hotkeys-hook": "5.0.1",
|
|
|
|
|
"react-i18next": "15.4.1",
|
2024-05-11 00:42:06 +02:00
|
|
|
"react-lazily": "0.9.2",
|
2024-09-03 17:12:38 +02:00
|
|
|
"react-router-dom": "6.26.1",
|
2025-04-09 22:39:28 +02:00
|
|
|
"react-virtuoso": "4.12.6",
|
|
|
|
|
"sanitize-html": "2.16.0",
|
2025-02-16 23:19:38 +01:00
|
|
|
"stylis": "4.3.6",
|
2024-04-26 17:10:53 +02:00
|
|
|
"stylis-plugin-rtl": "2.1.1",
|
2025-04-09 22:39:28 +02:00
|
|
|
"use-long-press": "3.3.0",
|
2024-09-07 01:07:02 +02:00
|
|
|
"use-query-params": "2.2.1",
|
|
|
|
|
"webfontloader": "1.6.28"
|
2020-12-24 02:37:23 +03:30
|
|
|
},
|
2020-12-24 16:49:43 +03:30
|
|
|
"devDependencies": {
|
2025-02-16 23:19:38 +01:00
|
|
|
"@graphql-codegen/cli": "5.0.5",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@graphql-codegen/client-preset": "4.8.0",
|
2024-04-14 15:10:34 +02:00
|
|
|
"@graphql-codegen/typescript-apollo-client-helpers": "3.0.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@graphql-codegen/typescript-operations": "4.6.0",
|
2024-12-24 14:19:40 +01:00
|
|
|
"@types/apollo-upload-client": "18.0.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@types/node": "22.14.1",
|
2025-04-18 20:42:41 +02:00
|
|
|
"@types/react": "19.1.2",
|
2024-04-14 15:10:34 +02:00
|
|
|
"@types/react-beautiful-dnd": "13.1.8",
|
2025-04-18 20:42:41 +02:00
|
|
|
"@types/react-dom": "19.1.2",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@types/sanitize-html": "2.15.0",
|
2024-12-23 23:47:42 +01:00
|
|
|
"@types/stylis": "4.2.7",
|
2024-09-07 01:07:02 +02:00
|
|
|
"@types/webfontloader": "1.6.38",
|
2024-09-03 17:12:38 +02:00
|
|
|
"@types/yargs": "17.0.33",
|
2024-07-17 16:51:22 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.16.1",
|
|
|
|
|
"@typescript-eslint/parser": "7.16.1",
|
2025-04-09 22:39:28 +02:00
|
|
|
"@vitejs/plugin-legacy": "6.1.0",
|
|
|
|
|
"@vitejs/plugin-react-swc": "3.9.0",
|
2024-04-14 15:10:34 +02:00
|
|
|
"eslint": "8.57.0",
|
|
|
|
|
"eslint-config-airbnb": "19.0.4",
|
|
|
|
|
"eslint-config-airbnb-typescript": "18.0.0",
|
|
|
|
|
"eslint-config-prettier": "9.1.0",
|
|
|
|
|
"eslint-plugin-header": "3.1.1",
|
2024-12-23 23:47:42 +01:00
|
|
|
"eslint-plugin-import": "2.31.0",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
2025-02-16 23:19:38 +01:00
|
|
|
"eslint-plugin-no-relative-import-paths": "1.6.1",
|
2025-04-09 22:39:28 +02:00
|
|
|
"eslint-plugin-prettier": "5.2.6",
|
|
|
|
|
"eslint-plugin-react": "7.37.5",
|
2024-05-11 00:42:06 +02:00
|
|
|
"eslint-plugin-react-hooks": "4.6.2",
|
|
|
|
|
"eslint-plugin-unused-imports": "3.2.0",
|
2024-12-23 23:47:42 +01:00
|
|
|
"husky": "9.1.7",
|
2025-04-09 22:39:28 +02:00
|
|
|
"lint-staged": "15.5.1",
|
|
|
|
|
"prettier": "3.5.3",
|
2024-04-14 15:10:34 +02:00
|
|
|
"syncyarnlock": "1.0.19",
|
2025-02-16 23:19:38 +01:00
|
|
|
"terser": "5.39.0",
|
2025-04-09 22:39:28 +02:00
|
|
|
"tsx": "4.19.3",
|
|
|
|
|
"typescript": "5.8.3",
|
|
|
|
|
"vite": "6.3.1",
|
2024-12-24 13:04:29 +01:00
|
|
|
"vite-tsconfig-paths": "5.1.4",
|
2024-04-14 15:10:34 +02:00
|
|
|
"yargs": "17.7.2"
|
2020-12-24 02:37:23 +03:30
|
|
|
}
|
2021-01-21 15:04:11 +03:30
|
|
|
}
|