Files
suwayomi-material-you-webui/package.json

110 lines
4.0 KiB
JSON
Raw Normal View History

{
"name": "project",
"version": "0.1.0",
"private": true,
"scripts": {
"ci": "yarn install --frozen-lockfile",
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"test": "node -e \"console.log('imagine')\"",
"build-md5": "find build -type f | sort | xargs md5sum | awk '{ print $1 }' | tr -d '\n' | md5sum| awk '{ print $1 }' > buildZip/md5sum ",
"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",
"createChangelog": "ts-node -T tools/scripts/createReleaseChangelog.ts",
"createTranslationChangelog": "ts-node -T -r tsconfig-paths/register tools/scripts/createTranslationChangelog.ts",
"updateDeps": "ts-node -T tools/scripts/updateDependencies.ts",
"gql:codegen-base": "graphql-codegen --config gql_codegen.ts",
"gql:codegen-formatter": "ts-node -T tools/scripts/codegenFormatter.ts",
2024-03-08 22:42:48 +01:00
"gql:codegen": "yarn gql:codegen-base & yarn gql:codegen-formatter",
"i18n:gen-resources": "ts-node -T tools/scripts/generatei18nResources.ts",
"dayjs:gen-locales-array": "ts-node -T tools/scripts/generateDayJsLocales.ts",
"dayjs:gen-locales-import": "ts-node -T tools/scripts/generateDayJsLocalesImport.ts",
"dayjs:gen-locales": "yarn dayjs:gen-locales-array && yarn dayjs:gen-locales-import",
2024-03-08 22:42:48 +01:00
"prepare": "husky"
},
"engines": {
"node": "21.7.3"
},
2024-03-08 22:42:48 +01:00
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix"
2024-03-08 22:42:48 +01:00
},
"dependencies": {
2024-07-17 16:51:22 +02:00
"@apollo/client": "3.10.8",
2024-04-26 17:10:53 +02:00
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
2024-04-26 17:10:53 +02:00
"@fontsource/roboto": "5.0.13",
2024-05-11 00:42:06 +02:00
"@loadable/component": "5.16.4",
2024-07-17 16:51:22 +02:00
"@mui/icons-material": "5.16.4",
"@mui/material": "5.16.4",
"@mui/x-date-pickers": "7.10.0",
"apollo-upload-client": "17.0.0",
2024-05-11 00:42:06 +02:00
"dayjs": "1.11.11",
"file-selector": "0.6.0",
2024-06-25 16:28:29 +02:00
"graphql": "16.9.0",
"graphql-tag": "2.12.6",
"graphql-ws": "5.16.0",
"html-react-parser": "5.1.10",
2024-07-17 16:51:22 +02:00
"i18next": "23.12.1",
2024-06-25 16:28:29 +02:00
"i18next-browser-languagedetector": "8.0.0",
2024-05-25 18:06:37 +02:00
"i18next-http-backend": "2.5.2",
"material-ui-popup-state": "5.1.2",
2024-05-11 00:42:06 +02:00
"mui-nested-menu": "3.4.0",
2024-07-17 16:51:22 +02:00
"p-limit": "^6.1.0",
2024-05-11 00:42:06 +02:00
"react": "18.3.1",
"react-beautiful-dnd": "13.1.1",
2024-05-11 00:42:06 +02:00
"react-dom": "18.3.1",
2024-07-17 16:51:22 +02:00
"react-i18next": "^15.0.0",
2024-05-11 00:42:06 +02:00
"react-lazily": "0.9.2",
2024-07-17 16:51:22 +02:00
"react-router-dom": "6.25.0",
"react-virtuoso": "4.7.12",
"sanitize-html": "2.13.0",
2024-04-26 17:10:53 +02:00
"stylis": "4.3.2",
"stylis-plugin-rtl": "2.1.1",
"use-long-press": "3.2.0",
2024-04-17 20:01:17 +02:00
"use-query-params": "2.2.1"
},
2020-12-24 16:49:43 +03:30
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
2024-07-17 16:51:22 +02:00
"@graphql-codegen/client-preset": "4.3.2",
"@graphql-codegen/typescript-apollo-client-helpers": "3.0.0",
"@graphql-codegen/typescript-operations": "4.2.0",
"@types/apollo-upload-client": "17.0.5",
2024-07-17 16:51:22 +02:00
"@types/node": "20.14.11",
2024-05-25 18:06:37 +02:00
"@types/react": "18.3.3",
"@types/react-beautiful-dnd": "13.1.8",
2024-04-26 17:10:53 +02:00
"@types/react-dom": "18.3.0",
"@types/sanitize-html": "2.11.0",
2024-05-11 00:42:06 +02:00
"@types/stylis": "4.2.6",
"@types/yargs": "17.0.32",
2024-07-17 16:51:22 +02:00
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
2024-06-25 16:28:29 +02:00
"@vitejs/plugin-legacy": "5.4.1",
2024-05-25 18:06:37 +02:00
"@vitejs/plugin-react-swc": "3.7.0",
"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",
"eslint-plugin-import": "2.29.1",
2024-06-25 16:28:29 +02:00
"eslint-plugin-jsx-a11y": "6.9.0",
2024-07-17 16:51:22 +02:00
"eslint-plugin-no-relative-import-paths": "1.5.5",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.34.4",
2024-05-11 00:42:06 +02:00
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.0.11",
2024-06-25 16:28:29 +02:00
"lint-staged": "15.2.7",
2024-07-17 16:51:22 +02:00
"prettier": "3.3.3",
"syncyarnlock": "1.0.19",
2024-07-17 16:51:22 +02:00
"terser": "5.31.3",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
2024-07-17 16:51:22 +02:00
"typescript": "5.5.3",
"vite": "5.3.4",
2024-04-20 00:57:30 +02:00
"vite-tsconfig-paths": "4.3.2",
"yargs": "17.7.2"
}
2021-01-21 15:04:11 +03:30
}