2022-12-20 00:59:14 +01:00
|
|
|
{
|
2023-07-02 04:10:05 +02:00
|
|
|
"name": "feishin",
|
2022-12-20 00:59:14 +01:00
|
|
|
"productName": "Feishin",
|
2023-07-02 04:10:05 +02:00
|
|
|
"description": "Feishin music server",
|
2024-09-29 06:39:30 +02:00
|
|
|
"version": "0.10.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"scripts": {
|
2023-08-08 09:35:29 +02:00
|
|
|
"build": "concurrently \"npm run build:main\" \"npm run build:renderer\" \"npm run build:remote\"",
|
2023-07-02 04:10:05 +02:00
|
|
|
"build:main": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.main.prod.ts",
|
2023-07-23 14:23:18 +02:00
|
|
|
"build:remote": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.remote.prod.ts",
|
2023-07-02 04:10:05 +02:00
|
|
|
"build:renderer": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.renderer.prod.ts",
|
2023-08-08 09:10:07 +02:00
|
|
|
"build:web": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.web.prod.ts",
|
2024-02-24 07:55:23 +01:00
|
|
|
"build:docker": "docker build -t jeffvli/feishin .",
|
2023-07-02 04:10:05 +02:00
|
|
|
"rebuild": "electron-rebuild --parallel --types prod,dev,optional --module-dir release/app",
|
2023-09-16 05:42:03 +02:00
|
|
|
"lint": "concurrently \"npm run lint:code\" \"npm run lint:styles\"",
|
|
|
|
"lint:code": "cross-env NODE_ENV=development eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
|
|
"lint:styles": "npx stylelint **/*.tsx --fix",
|
2024-07-03 20:53:59 +02:00
|
|
|
"package": "node --import tsx ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never",
|
|
|
|
"package:pr": "node --import tsx ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --win --mac --linux",
|
|
|
|
"package:dev": "node --import tsx ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --dir",
|
|
|
|
"postinstall": "node --import tsx .erb/scripts/check-native-dep.js && electron-builder install-app-deps && cross-env NODE_ENV=development TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.renderer.dev.dll.ts",
|
|
|
|
"start": "node --import tsx ./.erb/scripts/check-port-in-use.js && npm run start:renderer",
|
2024-07-04 00:13:54 +02:00
|
|
|
"start:main": "cross-env NODE_ENV=development NODE_OPTIONS=\"--import tsx\" electron -r ts-node/register/transpile-only ./src/main/main.ts",
|
2023-07-02 04:10:05 +02:00
|
|
|
"start:preload": "cross-env NODE_ENV=development TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.preload.dev.ts",
|
2023-07-23 14:23:18 +02:00
|
|
|
"start:remote": "cross-env NODE_ENV=developemnt TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.remote.dev.ts",
|
2023-07-02 04:10:05 +02:00
|
|
|
"start:renderer": "cross-env NODE_ENV=development TS_NODE_TRANSPILE_ONLY=true webpack serve --config ./.erb/configs/webpack.config.renderer.dev.ts",
|
|
|
|
"start:web": "cross-env NODE_ENV=development TS_NODE_TRANSPILE_ONLY=true webpack serve --config ./.erb/configs/webpack.config.renderer.web.ts",
|
|
|
|
"test": "jest",
|
|
|
|
"prepare": "husky install",
|
2023-10-31 03:22:45 +01:00
|
|
|
"i18next": "i18next -c src/i18n/i18next-parser.config.js",
|
2023-07-02 04:10:05 +02:00
|
|
|
"prod:buildserver": "pwsh -c \"./scripts/server-build.ps1\"",
|
|
|
|
"prod:publishserver": "pwsh -c \"./scripts/server-publish.ps1\""
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,jsx,ts,tsx}": [
|
|
|
|
"cross-env NODE_ENV=development eslint --cache"
|
|
|
|
],
|
|
|
|
"*.json,.{eslintrc,prettierrc}": [
|
|
|
|
"prettier --ignore-path .eslintignore --parser json --write"
|
|
|
|
],
|
|
|
|
"*.{css,scss}": [
|
|
|
|
"prettier --ignore-path .eslintignore --single-quote --write"
|
|
|
|
],
|
|
|
|
"*.{html,md,yml}": [
|
|
|
|
"prettier --ignore-path .eslintignore --single-quote --write"
|
2022-12-20 00:59:14 +01:00
|
|
|
]
|
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"build": {
|
|
|
|
"productName": "Feishin",
|
|
|
|
"appId": "org.jeffvli.feishin",
|
|
|
|
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
|
|
|
|
"asar": true,
|
|
|
|
"asarUnpack": "**\\*.{node,dll}",
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"package.json"
|
|
|
|
],
|
|
|
|
"afterSign": ".erb/scripts/notarize.js",
|
2024-07-30 12:17:32 +02:00
|
|
|
"electronVersion": "31.2.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"mac": {
|
|
|
|
"target": {
|
|
|
|
"target": "default",
|
|
|
|
"arch": [
|
|
|
|
"arm64",
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
},
|
2023-09-21 20:24:20 +02:00
|
|
|
"icon": "assets/icons/icon.icns",
|
2023-07-02 04:10:05 +02:00
|
|
|
"type": "distribution",
|
|
|
|
"hardenedRuntime": true,
|
|
|
|
"entitlements": "assets/entitlements.mac.plist",
|
|
|
|
"entitlementsInherit": "assets/entitlements.mac.plist",
|
|
|
|
"gatekeeperAssess": false
|
|
|
|
},
|
|
|
|
"dmg": {
|
|
|
|
"contents": [
|
|
|
|
{
|
|
|
|
"x": 130,
|
|
|
|
"y": 220
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"x": 410,
|
|
|
|
"y": 220,
|
|
|
|
"type": "link",
|
|
|
|
"path": "/Applications"
|
|
|
|
}
|
|
|
|
]
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"win": {
|
|
|
|
"target": [
|
|
|
|
"nsis",
|
|
|
|
"zip"
|
2023-09-21 20:24:20 +02:00
|
|
|
],
|
|
|
|
"icon": "assets/icons/icon.ico"
|
2023-07-02 04:10:05 +02:00
|
|
|
},
|
2023-10-29 01:51:07 +02:00
|
|
|
"deb": {
|
|
|
|
"depends": [
|
|
|
|
"libgssapi_krb5.so.2",
|
|
|
|
"libavahi-common.so.3",
|
|
|
|
"libavahi-client.so.3",
|
|
|
|
"libkrb5.so.3",
|
|
|
|
"libkrb5support.so.0",
|
|
|
|
"libkeyutils.so.1",
|
|
|
|
"libcups.so.2"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"rpm": {
|
|
|
|
"depends": [
|
|
|
|
"libgssapi_krb5.so.2",
|
|
|
|
"libavahi-common.so.3",
|
|
|
|
"libavahi-client.so.3",
|
|
|
|
"libkrb5.so.3",
|
|
|
|
"libkrb5support.so.0",
|
|
|
|
"libkeyutils.so.1",
|
|
|
|
"libcups.so.2"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"freebsd": {
|
|
|
|
"depends": [
|
|
|
|
"libgssapi_krb5.so.2",
|
|
|
|
"libavahi-common.so.3",
|
|
|
|
"libavahi-client.so.3",
|
|
|
|
"libkrb5.so.3",
|
|
|
|
"libkrb5support.so.0",
|
|
|
|
"libkeyutils.so.1",
|
|
|
|
"libcups.so.2"
|
|
|
|
]
|
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"linux": {
|
|
|
|
"target": [
|
|
|
|
"AppImage",
|
|
|
|
"tar.xz"
|
|
|
|
],
|
2023-09-21 20:24:20 +02:00
|
|
|
"icon": "assets/icons/icon.png",
|
2024-01-22 04:41:23 +01:00
|
|
|
"category": "AudioVideo;Audio;Player"
|
2023-07-02 04:10:05 +02:00
|
|
|
},
|
|
|
|
"directories": {
|
|
|
|
"app": "release/app",
|
|
|
|
"buildResources": "assets",
|
|
|
|
"output": "release/build"
|
|
|
|
},
|
|
|
|
"extraResources": [
|
|
|
|
"./assets/**"
|
|
|
|
],
|
|
|
|
"publish": {
|
|
|
|
"provider": "github",
|
|
|
|
"owner": "jeffvli",
|
2024-01-14 17:32:33 +01:00
|
|
|
"repo": "feishin"
|
2022-12-20 00:59:14 +01:00
|
|
|
}
|
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/jeffvli/feishin.git"
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"author": {
|
|
|
|
"name": "jeffvli",
|
|
|
|
"url": "https://github.com/jeffvli/"
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"contributors": [],
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/jeffvli/feishin/issues"
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"keywords": [
|
|
|
|
"subsonic",
|
|
|
|
"navidrome",
|
|
|
|
"airsonic",
|
|
|
|
"jellyfin",
|
|
|
|
"react",
|
|
|
|
"electron"
|
2022-12-20 00:59:14 +01:00
|
|
|
],
|
2023-07-02 04:10:05 +02:00
|
|
|
"homepage": "https://github.com/jeffvli/feishin",
|
|
|
|
"jest": {
|
|
|
|
"testURL": "http://localhost/",
|
|
|
|
"testEnvironment": "jsdom",
|
|
|
|
"transform": {
|
|
|
|
"\\.(ts|tsx|js|jsx)$": "ts-jest"
|
|
|
|
},
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/.erb/mocks/fileMock.js",
|
|
|
|
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
|
|
|
|
},
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"jsx",
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"json"
|
|
|
|
],
|
|
|
|
"moduleDirectories": [
|
|
|
|
"node_modules",
|
|
|
|
"release/app/node_modules"
|
|
|
|
],
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"release/app/dist"
|
|
|
|
],
|
|
|
|
"setupFiles": [
|
|
|
|
"./.erb/scripts/check-build-exists.ts"
|
|
|
|
]
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"devDependencies": {
|
2024-07-04 00:05:01 +02:00
|
|
|
"@electron/rebuild": "^3.6.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.5",
|
|
|
|
"@stylelint/postcss-css-in-js": "^0.38.0",
|
|
|
|
"@teamsupercell/typings-for-css-modules-loader": "^2.5.1",
|
|
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
|
|
"@testing-library/react": "^13.0.0",
|
2024-08-27 17:26:34 +02:00
|
|
|
"@types/dompurify": "^3.0.5",
|
2023-07-02 04:10:05 +02:00
|
|
|
"@types/electron-localshortcut": "^3.1.0",
|
|
|
|
"@types/jest": "^27.4.1",
|
|
|
|
"@types/lodash": "^4.14.188",
|
|
|
|
"@types/md5": "^2.3.2",
|
|
|
|
"@types/node": "^17.0.23",
|
|
|
|
"@types/react": "^18.0.25",
|
|
|
|
"@types/react-dom": "^18.0.8",
|
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
|
|
|
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
|
|
|
"@types/react-window": "^1.8.5",
|
|
|
|
"@types/react-window-infinite-loader": "^1.0.6",
|
|
|
|
"@types/styled-components": "^5.1.26",
|
|
|
|
"@types/terser-webpack-plugin": "^5.0.4",
|
|
|
|
"@types/webpack-bundle-analyzer": "^4.4.1",
|
|
|
|
"@types/webpack-env": "^1.16.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.47.0",
|
|
|
|
"@typescript-eslint/parser": "^5.47.0",
|
|
|
|
"browserslist-config-erb": "^0.0.3",
|
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"concurrently": "^7.1.0",
|
|
|
|
"core-js": "^3.21.1",
|
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"css-loader": "^6.7.1",
|
|
|
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
|
|
|
"detect-port": "^1.3.0",
|
2024-07-13 10:30:18 +02:00
|
|
|
"electron": "^31.2.0",
|
2024-03-19 07:00:54 +01:00
|
|
|
"electron-builder": "^24.13.3",
|
2023-07-02 04:10:05 +02:00
|
|
|
"electron-devtools-installer": "^3.2.0",
|
|
|
|
"electron-notarize": "^1.2.1",
|
|
|
|
"electronmon": "^2.0.2",
|
|
|
|
"eslint": "^8.30.0",
|
|
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
|
|
"eslint-config-erb": "^4.0.3",
|
|
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
|
|
"eslint-import-resolver-webpack": "^0.13.2",
|
2024-02-10 09:43:06 +01:00
|
|
|
"eslint-plugin-compat": "^4.2.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-jest": "^26.1.3",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
|
|
"eslint-plugin-react": "^7.29.4",
|
|
|
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
|
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
|
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"html-webpack-plugin": "^5.5.0",
|
|
|
|
"husky": "^7.0.4",
|
2024-08-23 17:00:59 +02:00
|
|
|
"i18next-parser": "^9.0.2",
|
2023-07-02 04:10:05 +02:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
|
|
|
"jest": "^27.5.1",
|
|
|
|
"lint-staged": "^12.3.7",
|
|
|
|
"mini-css-extract-plugin": "^2.6.0",
|
|
|
|
"postcss-scss": "^4.0.4",
|
2023-09-16 05:42:03 +02:00
|
|
|
"postcss-styled-syntax": "^0.5.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"postcss-syntax": "^0.36.2",
|
2024-08-23 17:19:27 +02:00
|
|
|
"prettier": "^3.3.3",
|
2023-07-02 04:10:05 +02:00
|
|
|
"react-refresh": "^0.12.0",
|
|
|
|
"react-refresh-typescript": "^2.0.4",
|
|
|
|
"react-test-renderer": "^18.0.0",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"sass": "^1.49.11",
|
|
|
|
"sass-loader": "^12.6.0",
|
|
|
|
"style-loader": "^3.3.1",
|
2023-09-16 05:42:03 +02:00
|
|
|
"stylelint": "^15.10.3",
|
2023-07-23 14:16:29 +02:00
|
|
|
"stylelint-config-css-modules": "^4.3.0",
|
2023-09-16 05:42:03 +02:00
|
|
|
"stylelint-config-recess-order": "^4.3.0",
|
|
|
|
"stylelint-config-standard": "^34.0.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"stylelint-config-standard-scss": "^4.0.0",
|
2023-09-16 05:42:03 +02:00
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"terser-webpack-plugin": "^5.3.1",
|
|
|
|
"ts-jest": "^27.1.4",
|
|
|
|
"ts-loader": "^9.2.8",
|
2024-07-04 00:00:56 +02:00
|
|
|
"ts-node": "^10.9.2",
|
2023-07-02 04:10:05 +02:00
|
|
|
"tsconfig-paths-webpack-plugin": "^4.0.0",
|
2024-07-04 00:05:01 +02:00
|
|
|
"tsx": "^4.16.2",
|
2023-09-16 05:42:03 +02:00
|
|
|
"typescript": "^5.2.2",
|
|
|
|
"typescript-plugin-styled-components": "^3.0.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"url-loader": "^4.1.1",
|
2024-08-30 06:42:44 +02:00
|
|
|
"webpack": "^5.94.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
|
|
"webpack-cli": "^4.9.2",
|
|
|
|
"webpack-dev-server": "^4.8.0",
|
|
|
|
"webpack-merge": "^5.8.0"
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"dependencies": {
|
|
|
|
"@ag-grid-community/client-side-row-model": "^28.2.1",
|
|
|
|
"@ag-grid-community/core": "^28.2.1",
|
|
|
|
"@ag-grid-community/infinite-row-model": "^28.2.1",
|
|
|
|
"@ag-grid-community/react": "^28.2.1",
|
|
|
|
"@ag-grid-community/styles": "^28.2.1",
|
|
|
|
"@emotion/react": "^11.10.4",
|
2023-07-23 10:50:20 +02:00
|
|
|
"@mantine/core": "^6.0.17",
|
|
|
|
"@mantine/dates": "^6.0.17",
|
|
|
|
"@mantine/form": "^6.0.17",
|
|
|
|
"@mantine/hooks": "^6.0.17",
|
|
|
|
"@mantine/modals": "^6.0.17",
|
|
|
|
"@mantine/notifications": "^6.0.17",
|
|
|
|
"@mantine/utils": "^6.0.17",
|
2023-08-04 10:41:45 +02:00
|
|
|
"@tanstack/react-query": "^4.32.1",
|
|
|
|
"@tanstack/react-query-devtools": "^4.32.1",
|
|
|
|
"@tanstack/react-query-persist-client": "^4.32.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"@ts-rest/core": "^3.23.0",
|
2024-08-25 00:22:55 +02:00
|
|
|
"@xhayper/discord-rpc": "^1.0.24",
|
2024-09-09 03:25:01 +02:00
|
|
|
"audiomotion-analyzer": "^4.5.0",
|
2024-09-24 05:25:17 +02:00
|
|
|
"auto-text-size": "^0.2.3",
|
2024-01-22 05:33:03 +01:00
|
|
|
"axios": "^1.6.0",
|
2023-07-23 14:16:29 +02:00
|
|
|
"clsx": "^2.0.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"cmdk": "^0.2.0",
|
|
|
|
"dayjs": "^1.11.6",
|
2024-08-27 17:26:34 +02:00
|
|
|
"dompurify": "^3.1.6",
|
2023-07-02 04:10:05 +02:00
|
|
|
"electron-debug": "^3.2.0",
|
|
|
|
"electron-localshortcut": "^3.2.1",
|
2024-02-12 22:50:02 +01:00
|
|
|
"electron-log": "^5.1.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"electron-store": "^8.1.0",
|
2024-07-30 20:54:54 +02:00
|
|
|
"electron-updater": "^6.3.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"fast-average-color": "^9.3.0",
|
|
|
|
"format-duration": "^2.0.0",
|
2024-04-29 03:59:05 +02:00
|
|
|
"framer-motion": "^11.0.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"fuse.js": "^6.6.2",
|
|
|
|
"history": "^5.3.0",
|
2023-10-31 03:22:45 +01:00
|
|
|
"i18next": "^21.10.0",
|
2023-08-04 10:41:45 +02:00
|
|
|
"idb-keyval": "^6.2.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"immer": "^9.0.21",
|
|
|
|
"is-electron": "^2.2.2",
|
|
|
|
"lodash": "^4.17.21",
|
|
|
|
"md5": "^2.3.0",
|
|
|
|
"memoize-one": "^6.0.0",
|
|
|
|
"nanoid": "^3.3.3",
|
|
|
|
"net": "^1.0.2",
|
2024-08-28 05:11:08 +02:00
|
|
|
"node-mpv": "github:jeffvli/Node-MPV#32b4d64395289ad710c41d481d2707a7acfc228f",
|
2023-07-21 14:38:16 +02:00
|
|
|
"overlayscrollbars": "^2.2.1",
|
2023-07-21 13:02:27 +02:00
|
|
|
"overlayscrollbars-react": "^0.5.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-error-boundary": "^3.1.4",
|
2023-10-31 03:22:45 +01:00
|
|
|
"react-i18next": "^11.18.6",
|
2023-07-19 03:40:07 +02:00
|
|
|
"react-icons": "^4.10.1",
|
2023-07-02 04:10:05 +02:00
|
|
|
"react-player": "^2.11.0",
|
2023-09-26 01:13:27 +02:00
|
|
|
"react-router": "^6.16.0",
|
|
|
|
"react-router-dom": "^6.16.0",
|
2023-07-02 04:10:05 +02:00
|
|
|
"react-simple-img": "^3.0.0",
|
|
|
|
"react-virtualized-auto-sizer": "^1.0.17",
|
|
|
|
"react-window": "^1.8.9",
|
|
|
|
"react-window-infinite-loader": "^1.0.9",
|
2024-02-04 07:47:57 +01:00
|
|
|
"semver": "^7.5.4",
|
2023-09-16 05:42:03 +02:00
|
|
|
"styled-components": "^6.0.8",
|
2023-07-02 04:10:05 +02:00
|
|
|
"swiper": "^9.3.1",
|
2024-01-22 05:33:07 +01:00
|
|
|
"zod": "^3.22.3",
|
2023-07-23 10:50:20 +02:00
|
|
|
"zustand": "^4.3.9"
|
2023-07-02 04:10:05 +02:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2023-09-16 05:42:03 +02:00
|
|
|
"styled-components": "^6"
|
2023-07-02 04:10:05 +02:00
|
|
|
},
|
|
|
|
"devEngines": {
|
2024-07-03 20:53:59 +02:00
|
|
|
"node": ">=18.x",
|
2023-07-02 04:10:05 +02:00
|
|
|
"npm": ">=7.x"
|
|
|
|
},
|
|
|
|
"browserslist": [],
|
|
|
|
"electronmon": {
|
|
|
|
"patterns": [
|
|
|
|
"!server",
|
|
|
|
"!src/renderer"
|
|
|
|
]
|
|
|
|
}
|
2022-12-20 00:59:14 +01:00
|
|
|
}
|