reduced.to/package.json

119 lines
3.4 KiB
JSON
Raw Normal View History

2022-10-09 04:44:09 +03:00
{
2023-09-09 23:11:34 +03:00
"name": "@reduced.to/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {},
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"devDependencies": {
2024-11-02 13:02:00 +02:00
"@builder.io/qwik": "^1.3.5",
2024-11-02 13:13:39 +02:00
"@builder.io/qwik-city": "^1.3.5",
"@docusaurus/module-type-aliases": "^2.4.1",
2023-09-09 23:11:34 +03:00
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
Darkmift user table (#553) * [user-table] added deps for feature * [user-table] added first component draft * [user-table] use of table in dashboard * [user-table] zindex removed disrupts click events * [user-table] WIP fetch data from backend * [user-table] TODO:fix generic type declaration * [user-table] fetches data,TODO refetch on reload * [user-table] fixed page reload not fetching data * [user-table] added filter input * [user-table] issue scope/serialize on table object * [user-table] applied my own table * [user-table] added types * [user-table] excluding local mock * [user-table] added server paginated table * [user-table] rewrite to use paginated table * [user-table] local /remote pagination hybrid * [user-table] applied some style * [user-table] removed mock ignore * [user-table] removed tanstack table * [user-table] deprecated file * [user-table] applied enum * [user-table] deprecated file * [user-table] removed unused style * [user-table] removed unused style * [user-table] commenting out logs * [user-table] removed file * [user-table] moved types under file * [user-table] minor css tweaks * [user-table] renamed files * [user-table] api call,file import,total changes * [user-table] added option to hide columns * [user-table] type change,total page fix value * [user-table] code refactoring * [user-table] refactor for optional attributes * [user-table] set sort to null * [user-table] deprecated unused file * [user-table] added util * [user-table] fixed maxpage ,disabled page input * [user-table] migrated pagination to reusable hook * [user-table] refactor code * [user-table] migrated fn back into file * [user-table] removeed comment * [user-table] cleanup of comments * [user-table] progress * [user-table] work towards abstrated cmp * wip: cleaning some stuff * fix: drawer hight * fix: use visibleTask instead of resource * fix: remove old code * feat: add document head for the users route * fix: columns orders * feat: add sortable option --------- Co-authored-by: darkmift <darkmift@gmail.com> Co-authored-by: orig <oriorigranot@gamil.com>
2023-10-29 23:07:11 +02:00
"@nx/eslint": "17.0.1",
"@nx/eslint-plugin": "17.0.1",
"@nx/jest": "17.0.1",
"@nx/js": "17.0.1",
"@nx/nest": "17.0.1",
"@nx/node": "^17.0.1",
"@nx/vite": "17.0.1",
"@nx/webpack": "17.0.1",
"@nx/workspace": "17.0.1",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
2024-04-12 20:43:07 +03:00
"@tailwindcss/typography": "^0.5.12",
"@tsconfig/docusaurus": "^2.0.0",
2023-09-09 23:11:34 +03:00
"@types/bcryptjs": "^2.4.3",
"@types/cookie-parser": "^1.4.4",
"@types/express": "^4.17.17",
"@types/geoip-lite": "^1.4.4",
2023-09-09 23:11:34 +03:00
"@types/jest": "^29.4.0",
"@types/node": "^18.17.14",
"@types/passport-google-oauth20": "^2.0.14",
2023-09-09 23:11:34 +03:00
"@types/passport-jwt": "^3.0.9",
"@types/passport-local": "^1.0.35",
"@types/qrcode": "^1.5.2",
"@types/supertest": "^2.0.12",
"@types/ua-parser-js": "^0.7.39",
2023-09-09 23:11:34 +03:00
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/ui": "~0.32.0",
"apexcharts": "^3.49.0",
2023-09-09 23:11:34 +03:00
"autoprefixer": "^10.4.15",
"daisyui": "^4.2.3",
"date-fns": "^3.6.0",
2023-09-09 23:11:34 +03:00
"eslint": "~8.46.0",
"eslint-config-prettier": "9.0.0",
2024-03-30 22:15:11 +03:00
"express": "^4.18.2",
2023-09-09 23:11:34 +03:00
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"node-fetch": "~3.3.0",
"nx": "17.0.1",
"postcss": "^8.4.31",
2023-09-09 23:11:34 +03:00
"prettier": "^2.6.2",
"prisma": "^5.7.1",
2023-09-09 23:11:34 +03:00
"qwik-nx": "^1.0.8",
"supertest": "^7.0.0",
2024-04-12 20:43:07 +03:00
"tailwindcss": "^3.4.3",
2023-09-09 23:11:34 +03:00
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3",
2024-11-02 13:13:39 +02:00
"undici": "^5.28.4",
"vite": "^4.5.5",
2023-09-09 23:11:34 +03:00
"vite-tsconfig-paths": "~4.2.0",
Darkmift user table (#553) * [user-table] added deps for feature * [user-table] added first component draft * [user-table] use of table in dashboard * [user-table] zindex removed disrupts click events * [user-table] WIP fetch data from backend * [user-table] TODO:fix generic type declaration * [user-table] fetches data,TODO refetch on reload * [user-table] fixed page reload not fetching data * [user-table] added filter input * [user-table] issue scope/serialize on table object * [user-table] applied my own table * [user-table] added types * [user-table] excluding local mock * [user-table] added server paginated table * [user-table] rewrite to use paginated table * [user-table] local /remote pagination hybrid * [user-table] applied some style * [user-table] removed mock ignore * [user-table] removed tanstack table * [user-table] deprecated file * [user-table] applied enum * [user-table] deprecated file * [user-table] removed unused style * [user-table] removed unused style * [user-table] commenting out logs * [user-table] removed file * [user-table] moved types under file * [user-table] minor css tweaks * [user-table] renamed files * [user-table] api call,file import,total changes * [user-table] added option to hide columns * [user-table] type change,total page fix value * [user-table] code refactoring * [user-table] refactor for optional attributes * [user-table] set sort to null * [user-table] deprecated unused file * [user-table] added util * [user-table] fixed maxpage ,disabled page input * [user-table] migrated pagination to reusable hook * [user-table] refactor code * [user-table] migrated fn back into file * [user-table] removeed comment * [user-table] cleanup of comments * [user-table] progress * [user-table] work towards abstrated cmp * wip: cleaning some stuff * fix: drawer hight * fix: use visibleTask instead of resource * fix: remove old code * feat: add document head for the users route * fix: columns orders * feat: add sortable option --------- Co-authored-by: darkmift <darkmift@gmail.com> Co-authored-by: orig <oriorigranot@gamil.com>
2023-10-29 23:07:11 +02:00
"vitest": "~0.32.0"
2023-09-09 23:11:34 +03:00
},
"dependencies": {
"@aws-sdk/client-s3": "^3.688.0",
"@docusaurus/core": "^2.4.1",
"@docusaurus/preset-classic": "^2.4.1",
"@mdx-js/react": "^1.6.22",
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.4.12",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.6",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.6",
"@nestjs/schedule": "^4.1.0",
2023-09-09 23:11:34 +03:00
"@nestjs/throttler": "^4.2.1",
"@novu/node": "^0.24.2",
2023-09-09 23:11:34 +03:00
"@origranot/ts-logger": "^1.12.0",
"@paddle/paddle-js": "^1.3.2",
"@paddle/paddle-node-sdk": "^1.9.1",
"@prisma/client": "^5.17.0",
Darkmift user table (#553) * [user-table] added deps for feature * [user-table] added first component draft * [user-table] use of table in dashboard * [user-table] zindex removed disrupts click events * [user-table] WIP fetch data from backend * [user-table] TODO:fix generic type declaration * [user-table] fetches data,TODO refetch on reload * [user-table] fixed page reload not fetching data * [user-table] added filter input * [user-table] issue scope/serialize on table object * [user-table] applied my own table * [user-table] added types * [user-table] excluding local mock * [user-table] added server paginated table * [user-table] rewrite to use paginated table * [user-table] local /remote pagination hybrid * [user-table] applied some style * [user-table] removed mock ignore * [user-table] removed tanstack table * [user-table] deprecated file * [user-table] applied enum * [user-table] deprecated file * [user-table] removed unused style * [user-table] removed unused style * [user-table] commenting out logs * [user-table] removed file * [user-table] moved types under file * [user-table] minor css tweaks * [user-table] renamed files * [user-table] api call,file import,total changes * [user-table] added option to hide columns * [user-table] type change,total page fix value * [user-table] code refactoring * [user-table] refactor for optional attributes * [user-table] set sort to null * [user-table] deprecated unused file * [user-table] added util * [user-table] fixed maxpage ,disabled page input * [user-table] migrated pagination to reusable hook * [user-table] refactor code * [user-table] migrated fn back into file * [user-table] removeed comment * [user-table] cleanup of comments * [user-table] progress * [user-table] work towards abstrated cmp * wip: cleaning some stuff * fix: drawer hight * fix: use visibleTask instead of resource * fix: remove old code * feat: add document head for the users route * fix: columns orders * feat: add sortable option --------- Co-authored-by: darkmift <darkmift@gmail.com> Co-authored-by: orig <oriorigranot@gamil.com>
2023-10-29 23:07:11 +02:00
"@qwikest/icons": "^0.0.13",
"argon2": "^0.40.3",
"axios": "^1.7.4",
2023-09-09 23:11:34 +03:00
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cache-manager": "^5.7.6",
2023-09-09 23:11:34 +03:00
"cache-manager-redis-store": "^3.0.1",
"class-validator": "^0.14.1",
"clsx": "^2.1.1",
2023-09-09 23:11:34 +03:00
"cookie-parser": "^1.4.6",
"country-code-lookup": "^0.1.3",
"geoip-lite": "^1.4.10",
"isbot": "^5.1.17",
2023-09-09 23:11:34 +03:00
"jwt-decode": "^3.1.2",
"kafkajs": "^2.2.4",
2024-04-12 20:43:07 +03:00
"node-html-parser": "^6.1.13",
"passport-google-oauth20": "^2.0.0",
2023-09-09 23:11:34 +03:00
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"prism-react-renderer": "^1.3.5",
2023-09-09 23:11:34 +03:00
"qrcode": "^1.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.14",
2023-09-09 23:11:34 +03:00
"rxjs": "^7.8.0",
"tslib": "^2.8.1",
"ua-parser-js": "^1.0.38",
"zod": "^3.23.8"
}
2022-10-09 21:30:51 +05:30
}