├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── report_bug.md └── workflows │ └── lint-build-test.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── .yarnrc.yml ├── CONTRIBUTING.md ├── README.md ├── apps ├── console-electron │ ├── .eslintrc.json │ ├── .gitignore │ ├── app │ │ ├── dashboard │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── GeistMonoVF.woff │ │ │ └── GeistVF.woff │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── main.js │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── tailwind.config.ts │ └── tsconfig.json └── playground-web │ ├── .dockerignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── PlaygroundMonoDockerfile │ ├── README.md │ ├── __tests__ │ └── app.test.tsx │ ├── app │ ├── layout.tsx │ └── page.tsx │ ├── components │ ├── Footer │ │ └── Footer.tsx │ ├── Header │ │ ├── Header.tsx │ │ └── __tests__ │ │ │ └── Header.test.tsx │ ├── Overlays │ │ └── Tooltip.tsx │ ├── Playground │ │ ├── Playground.tsx │ │ ├── TerminalUI.tsx │ │ ├── __tests__ │ │ │ ├── Playground.test.tsx │ │ │ └── TerminalUI.test.tsx │ │ └── hooks │ │ │ └── usePlayground.ts │ ├── Search │ │ ├── CommandPage.tsx │ │ ├── SearchBox.tsx │ │ └── __tests__ │ │ │ ├── CommandPage.test.tsx │ │ │ └── SearchBox.test.tsx │ └── Shell │ │ ├── Shell.tsx │ │ ├── __tests__ │ │ └── index.test.tsx │ │ └── hooks │ │ └── useShell.tsx │ ├── data │ ├── command.ts │ └── mockData.json │ ├── docker-compose.dev.yml │ ├── docker-compose.yml │ ├── jest.config.mjs │ ├── jest.setup.mjs │ ├── lib │ ├── api.ts │ ├── monoResponse.ts │ └── monoSchema.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── file-text.svg │ ├── globe.svg │ ├── images │ │ └── dicedb-logo-light.png │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ ├── services │ └── webServices.ts │ ├── shared │ ├── constants │ │ └── apiEndpoints.ts │ ├── hooks │ │ └── useTimer.ts │ └── utils │ │ ├── blocklist.ts │ │ ├── commonUtils.ts │ │ ├── shellUtils.ts │ │ └── validation.ts │ ├── styles │ └── globals.css │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── turbo.json │ └── types │ └── index.d.ts ├── package.json ├── packages └── ui │ ├── .eslintrc.js │ ├── README.md │ ├── jest.config.mjs │ ├── package.json │ ├── src │ ├── button.tsx │ └── dummy.test.ts │ ├── tsconfig.json │ ├── tsconfig.lint.json │ └── turbo │ └── generators │ ├── config.ts │ └── templates │ └── component.hbs ├── src └── lib │ └── __tests__ │ └── api.test.ts ├── tooling ├── eslint-config │ ├── README.md │ ├── library.js │ ├── next.js │ ├── package.json │ └── react-internal.js ├── tailwind-config │ ├── base.tailwind.config.ts │ └── package.json └── typescript-config │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json ├── turbo.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .turbo 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/.github/ISSUE_TEMPLATE/report_bug.md -------------------------------------------------------------------------------- /.github/workflows/lint-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/.github/workflows/lint-build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .github 3 | .next 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/README.md -------------------------------------------------------------------------------- /apps/console-electron/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/.eslintrc.json -------------------------------------------------------------------------------- /apps/console-electron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/.gitignore -------------------------------------------------------------------------------- /apps/console-electron/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/console-electron/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/favicon.ico -------------------------------------------------------------------------------- /apps/console-electron/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /apps/console-electron/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /apps/console-electron/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/globals.css -------------------------------------------------------------------------------- /apps/console-electron/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/layout.tsx -------------------------------------------------------------------------------- /apps/console-electron/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/app/page.tsx -------------------------------------------------------------------------------- /apps/console-electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/main.js -------------------------------------------------------------------------------- /apps/console-electron/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/next.config.mjs -------------------------------------------------------------------------------- /apps/console-electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/package.json -------------------------------------------------------------------------------- /apps/console-electron/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/postcss.config.mjs -------------------------------------------------------------------------------- /apps/console-electron/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/tailwind.config.ts -------------------------------------------------------------------------------- /apps/console-electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/console-electron/tsconfig.json -------------------------------------------------------------------------------- /apps/playground-web/.dockerignore: -------------------------------------------------------------------------------- 1 | .next 2 | .swc 3 | .turbo 4 | -------------------------------------------------------------------------------- /apps/playground-web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/.eslintrc.js -------------------------------------------------------------------------------- /apps/playground-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/.gitignore -------------------------------------------------------------------------------- /apps/playground-web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/Dockerfile -------------------------------------------------------------------------------- /apps/playground-web/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/Dockerfile.dev -------------------------------------------------------------------------------- /apps/playground-web/PlaygroundMonoDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/PlaygroundMonoDockerfile -------------------------------------------------------------------------------- /apps/playground-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/README.md -------------------------------------------------------------------------------- /apps/playground-web/__tests__/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/__tests__/app.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/app/layout.tsx -------------------------------------------------------------------------------- /apps/playground-web/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/app/page.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Header/Header.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Header/__tests__/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Header/__tests__/Header.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Overlays/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Overlays/Tooltip.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Playground/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Playground/Playground.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Playground/TerminalUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Playground/TerminalUI.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Playground/__tests__/Playground.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Playground/__tests__/Playground.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Playground/__tests__/TerminalUI.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Playground/__tests__/TerminalUI.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Playground/hooks/usePlayground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Playground/hooks/usePlayground.ts -------------------------------------------------------------------------------- /apps/playground-web/components/Search/CommandPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Search/CommandPage.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Search/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Search/SearchBox.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Search/__tests__/CommandPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Search/__tests__/CommandPage.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Search/__tests__/SearchBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Search/__tests__/SearchBox.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Shell/Shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Shell/Shell.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Shell/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Shell/__tests__/index.test.tsx -------------------------------------------------------------------------------- /apps/playground-web/components/Shell/hooks/useShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/components/Shell/hooks/useShell.tsx -------------------------------------------------------------------------------- /apps/playground-web/data/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/data/command.ts -------------------------------------------------------------------------------- /apps/playground-web/data/mockData.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/playground-web/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/docker-compose.dev.yml -------------------------------------------------------------------------------- /apps/playground-web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/docker-compose.yml -------------------------------------------------------------------------------- /apps/playground-web/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/jest.config.mjs -------------------------------------------------------------------------------- /apps/playground-web/jest.setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/jest.setup.mjs -------------------------------------------------------------------------------- /apps/playground-web/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/lib/api.ts -------------------------------------------------------------------------------- /apps/playground-web/lib/monoResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/lib/monoResponse.ts -------------------------------------------------------------------------------- /apps/playground-web/lib/monoSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/lib/monoSchema.ts -------------------------------------------------------------------------------- /apps/playground-web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/next.config.mjs -------------------------------------------------------------------------------- /apps/playground-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/package.json -------------------------------------------------------------------------------- /apps/playground-web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/playground-web/public/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/file-text.svg -------------------------------------------------------------------------------- /apps/playground-web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/globe.svg -------------------------------------------------------------------------------- /apps/playground-web/public/images/dicedb-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/images/dicedb-logo-light.png -------------------------------------------------------------------------------- /apps/playground-web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/next.svg -------------------------------------------------------------------------------- /apps/playground-web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/vercel.svg -------------------------------------------------------------------------------- /apps/playground-web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/public/window.svg -------------------------------------------------------------------------------- /apps/playground-web/services/webServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/services/webServices.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/constants/apiEndpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/constants/apiEndpoints.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/hooks/useTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/hooks/useTimer.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/utils/blocklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/utils/blocklist.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/utils/commonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/utils/commonUtils.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/utils/shellUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/utils/shellUtils.ts -------------------------------------------------------------------------------- /apps/playground-web/shared/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/shared/utils/validation.ts -------------------------------------------------------------------------------- /apps/playground-web/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/styles/globals.css -------------------------------------------------------------------------------- /apps/playground-web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/playground-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/tsconfig.json -------------------------------------------------------------------------------- /apps/playground-web/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/turbo.json -------------------------------------------------------------------------------- /apps/playground-web/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/apps/playground-web/types/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/package.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /packages/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/README.md -------------------------------------------------------------------------------- /packages/ui/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/jest.config.mjs -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/src/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/dummy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/src/dummy.test.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/ui/turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/turbo/generators/config.ts -------------------------------------------------------------------------------- /packages/ui/turbo/generators/templates/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/packages/ui/turbo/generators/templates/component.hbs -------------------------------------------------------------------------------- /src/lib/__tests__/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/src/lib/__tests__/api.test.ts -------------------------------------------------------------------------------- /tooling/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/eslint-config/README.md -------------------------------------------------------------------------------- /tooling/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/eslint-config/library.js -------------------------------------------------------------------------------- /tooling/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/eslint-config/next.js -------------------------------------------------------------------------------- /tooling/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/eslint-config/package.json -------------------------------------------------------------------------------- /tooling/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/eslint-config/react-internal.js -------------------------------------------------------------------------------- /tooling/tailwind-config/base.tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/tailwind-config/base.tailwind.config.ts -------------------------------------------------------------------------------- /tooling/tailwind-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/tailwind-config/package.json -------------------------------------------------------------------------------- /tooling/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/typescript-config/base.json -------------------------------------------------------------------------------- /tooling/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/typescript-config/nextjs.json -------------------------------------------------------------------------------- /tooling/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/typescript-config/package.json -------------------------------------------------------------------------------- /tooling/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/tooling/typescript-config/react-library.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiceDB/alloy/HEAD/yarn.lock --------------------------------------------------------------------------------