GithubHelp home page GithubHelp logo

oku-ui / pergel Goto Github PK

View Code? Open in Web Editor NEW
108.0 3.0 5.0 9.35 MB

Full Stack Nuxt or Nitro Application. It contains the necessary toolkits for a software developer and a fast, clean, tested toolkit.

Home Page: https://pergel.oku-ui.com

License: MIT License

JavaScript 1.25% TypeScript 58.63% Shell 1.68% Vue 35.50% CSS 2.31% Java 0.15% Swift 0.36% Ruby 0.10%
cli nuxt vue nitro unjs auth full-stack-development

pergel's Introduction

Pergel

npm version npm downloads license

# โœจ Auto-detect
npx nypm install -D pergel

# npm
npm install -D pergel

# yarn
yarn add -D pergel

# pnpm
pnpm install -D pergel

# bun
bun install -D pergel

๐Ÿš€ Pergel Project: Accelerate Your Full-Stack Development with Nuxt and Nitro!

Pergel is a tailor-made solution for Nuxt and Nitro, providing swift project kickstarts and seamless integration of various modules. Named with a Turkish touch, Pergel maximizes the power of TypeScript, streamlining and accelerating your project development process.

Pergel Cover

๐Ÿงฐ Modular and Packaged Structure

Pergel encompasses the core structure of your project, offering essential modules and packages to kickstart your development journey. This allows you to build the foundational infrastructure for your project with an advanced and modular approach.

๐Ÿšจ Proactive Module Additions

Pergel is continuously evolving to meet your future needs. We consistently add new modules and packages to keep your projects up-to-date and competitive, ensuring a proactive and future-ready development environment.

๐Ÿš€ Empowered Development with TypeScript

Pergel seamlessly integrates with TypeScript, providing developers with type safety and the advantages of the compilation process. This results in safer, more readable, and sustainable projects.

๐ŸŒ Community-Driven Growth with Feedback

Pergel is a community-centric project. Engage with fellow developers and users to help us make Pergel better and more powerful. Your feedback plays a critical role in making Pergel more user-friendly and functional.

๐Ÿ’ก Join In and Progress

If you're a developer, explore Pergel to enhance your projects. You can also contribute to our community by integrating the structures you use in your projects into Pergel and submitting pull requests.

Feel free to share your suggestions or change requests regarding Pergel. Together, let's create a better and more robust development experience!

๐Ÿš€ Push Boundaries, Invest in the Future with Pergel!

Contributing

Please read our contributing guide

Modules

TODO

  • [] Add tests
  • [] Add more examples
  • [] Add more documentation

Community

  • Discord - To get involved with the Oku community, ask questions and share tips.
  • Twitter - To receive updates, announcements, blog posts, and general Oku tips.

Sponsors

sponsors

Credits

Thanks to

  • Nuxt
  • Harlan Wilton For getting back to me with every question and for helping me.
  • Daniel Roe His wonderful live broadcasts helped me to improve myself. He's a great teacher.

License

Licensed under the MIT License, Copyright ยฉ 2023-present productdevbook.

See LICENSE for more information.

Published under the MIT license. Made by @pergel and community ๐Ÿ’›

pergel's People

Contributors

0fatihyildiz avatar danielroe avatar erayakgunn avatar kbrkiras avatar mustafa60x avatar productdevbook avatar renovate[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

pergel's Issues

script to install automatic programs for ubuntu-linux-macos

Ubuntu

  • NodeJS LTS - I think NVM install
  • VSCode Install
  • Docker Desktop Install
  • Beekeeperstudio
  • Android Studio
  • Wget
  • Curl
  • Google Chrome
  • Pnpm
  • Bun
  • Starship
  • Brew

Macos

  • NodeJS LTS - I think NVM install
  • VSCode Install
  • Docker Desktop Install
  • Beekeeperstudio
  • Android Studio
  • Wget
  • Curl
  • Google Chrome
  • Pnpm
  • Bun
  • Starship
  • Brew

We need to make a command to install all the tools that will be used in this project. The following is a sh that I wrote in my time and may be missing or have bugs. Also it will be better if we choose the ones we want if we ask a question.

Pr for this is gladly waited.

file name

  • ubuntu.sh
  • macos.sh
  • ... other systems

Example

#!/bin/bash

# Update and Upgrade
echo "Update and Upgrade"

sudo apt update
sudo apt upgrade -y
sudo apt autoremove
sudo apt autoclean

# Install Wget

if command -v wget &> /dev/null
then
    echo "Wget is already installed"
else
    echo "Installing Wget"

    sudo apt update
    sudo apt install wget

    exec bash
fi

# Install curl

if command -v curl &> /dev/null
then
    echo "Curl is already installed"
else
    echo "Installing Curl"

    sudo apt update
    sudo apt install curl
    
    exec bash
fi

# Install Git

if command -v git &> /dev/null
then
    echo "Git is already installed"
else
    echo "Installing Git"

    sudo apt update
    sudo apt install git

    exec bash
fi


# Install snap

if command -v snap &> /dev/null
then
    echo "Snap is already installed"
else
    echo "Installing Snap"

    sudo apt update
    sudo apt install snapd

    exec bash
fi

# Install Visual Studio Code

if command -v code &> /dev/null
then
    echo "Visual Studio Code is already installed"
else
    echo "Installing Visual Studio Code"

    sudo snap install code --classic

    exec bash
fi

# Install Google Chrome

if command -v google-chrome &> /dev/null
then
    echo "Google Chrome is already installed"
else
    echo "Installing Google Chrome"

    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
    
    sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

    sudo apt update
    sudo apt install google-chrome-stable

    exec bash
fi

# Install Node.js

if command -v node &> /dev/null
then
    echo "Node.js is already installed"
else
    echo "Installing Node.js"
    
    curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
    sudo apt-get install -y nodejs
    node -v

    exec bash
fi

# Install Pnpm

if command -v pnpm &> /dev/null
then
    echo "Pnpm is already installed"
else
    echo "Installing Pnpm"

    curl -fsSL https://get.pnpm.io/install.sh | sh -
    pnpm -v

    echo "Add Pnpm to PATH"
    # Add pnpm store to PATH
    echo 'export PATH="$PATH:~/.local/share/pnpm"' >> ~/.bashrc

    # export PATH="$PATH:~/.local/share/pnpm"
    echo 'export PATH="$PNPM_HOME:$PATH"' >> ~/.bashrc

    exec bash
fi

# Install Htop

if command -v htop &> /dev/null
then
    echo "Htop is already installed"
else
    echo "Installing Htop"

    sudo apt update
    sudo snap install htop
    
    exec bash
fi

# Android Studio

if command -v android-studio &> /dev/null
then
    echo "Android Studio is already installed"
else
    echo "Installing Android Studio"

    sudo snap install android-studio --classic

    echo "Add Android Studio to PATH"

    # Add Android Studio to PATH
    echo 'export ANDROID_HOME=$HOME/Android/Sdk' >> ~/.bashrc
    echo 'export ANDROID_SDK_ROOT=$HOME/Android/Sdk' >> ~/.bashrc
    echo 'export PATH=$PATH:$ANDROID_HOME/emulator' >> ~/.bashrc
    echo 'export PATH=$PATH:$ANDROID_HOME/tools' >> ~/.bashrc
    echo 'export PATH=$PATH:$ANDROID_HOME/tools/bin' >> ~/.bashrc
    echo 'export PATH=$PATH:$ANDROID_HOME/platform-tools' >> ~/.bashrc

    echo 'export ANDROID_USER_HOME=$HOME/.android' >> ~/.bashrc
    echo 'export ANDROID_EMULATOR_HOME=$HOME/.android' >> ~/.bashrc
    echo 'export ANDROID_AVD_HOME=$HOME/.android/avd' >> ~/.bashrc

    exec bash
fi


# Install Starship

if command -v starship &> /dev/null
then
    echo "Starship is already installed"
else
    echo "Installing Starship"

    sudo snap install starship

    # Add Starship to PATH
    echo "Add Starship to PATH"

    echo 'eval "$(starship init bash)"' >> ~/.bashrc

    exec bash
fi

# Install Beekeeper Studio

if command -v beekeeper-studio &> /dev/null
then
    echo "Beekeeper Studio is already installed"
else
    echo "Installing Beekeeper Studio"

    sudo snap install beekeeper-studio

    exec bash
fi


# Install Bun

if command -v bun &> /dev/null
then
    echo "Bun is already installed"
else
    echo "Installing Bun"

    curl -fsSL https://bun.sh/install | bash

    exec bash
fi

# Brew

if command -v brew &> /dev/null
then
    echo "Brew is already installed"
else
    echo "Installing Brew"

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

    # Add Brew to PATH
    echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> ~/.bashrc

    exec bash
fi

# Ruby

if command -v ruby &> /dev/null
then
    echo "Ruby is already installed"
else
    echo "Installing Ruby"

    brew install rbenv ruby-build

    # Add Ruby to PATH

    echo 'eval "$(rbenv init - bash)"' >> ~/.bashrc

    exec bash
fi

# Fastlane

if command -v fastlane &> /dev/null
then
    echo "Fastlane is already installed"
else
    echo "Installing Fastlane"

    brew install fastlane
    
    exec bash
fi


# Install Docker Desktop

if command -v docker &> /dev/null
then
    echo "Docker Desktop is already installed"
else
    # KVM/QEMU
    sudo apt-get update
    
    sudo apt-get install -y \
              bridge-utils \
              cpu-checker \
              libvirt-clients \
              libvirt-daemon \
              qemu qemu-kvm \
              virt-manager

    sudo kvm-ok

    sudo apt-get update

    sudo apt-get install \
        apt-transport-https \
        ca-certificates \
        curl \
        gnupg \
        lsb-release

    sudo mkdir -p /etc/apt/keyrings
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

    echo \
    "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
    $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

    echo "Installing Docker Desktop"
    curl -fsSL -o /tmp/docker-desktop-amd64.deb https://desktop.docker.com/linux/main/amd64/docker-desktop-4.16.2-amd64.deb
    
    sudo apt-get install -y /tmp/docker-desktop-amd64.deb
    rm -f /tmp/docker-desktop-amd64.deb

    sudo apt-get update

    # Validate current $USER is enabled for docker group
    if ! (groups | grep docker > /dev/null); then
      echo "Add $USER to docker group by running the following:"
      echo "----"
      echo ""
      echo "sudo usermod -aG docker $USER"
      echo "newgrp docker"
    fi


fi

Interdependencies and sequencing of modules

Some modules may wait for other modules to load, in particular some user-submitted options may eventually change the module on which they depend. This needs to be resolved.

For example, for a user who chooses the drizzle orm for the Auth module, the drizzle orm must be set first.

Nitro auto import

There is a bug on the nitro side because the Pergel structure is based on modules. This indirectly hinders the system. For this we will follow the following pr.

[Brand] The compass doesn't make sense

Hi, I know this is a detail, but I think it's important for any product to give off a professional image.

As such, I would like to point out that the banner in you README.md file contains a compass pictogram that does not make any sense.

image

Indeed, the pivot branch should be in the center of the circle it's drawing, otherwise it's not a compass, but a double pen on a hinge.

Divide dependencies and programs.

Clear and concise description of the problem

Due to there are so many dependency, dependencies can be downloaded elsewhere instead of seeing all packages and dependencies together.

Suggested solution

There should be another option for installing dependencies when os is selected.

Ionic || Capacitor Module v0.1.0

MVP Roadmap for Ionic Pergel Templates and Pergel Config ๐Ÿ”ฅ

  • Capacitor Module #205
  • Splash Screen
  • Onboarding
    • Permission Access
    • Presentation (Slider)
  • Auth
    • Sign in
    • Sign Up
    • Forgot Password
    • OAuth (Google, Github)
  • Home
  • Settings
  • Local Notification
  • Cloud Notification
  • RevenueCat
  • Privacy Policy
  • Terms of Usage
  • Automatically Deploy CI CD
    • Appstore
    • Playstore
  • Multi Themes
  • Nuxt Ionic Pages
  • Nuxt Ionic Helper Composables
  • TailwindCSS Support
  • Automatically Version Upgrade
  • Deleting native configurations in plugins according to nuxt config

Create to-do list

My aim is to start with very small steps so that everyone can contribute.

Features I would like to have in the structure Nuxt 3

  • Auth
  • Mobile App
  • Admin Panel
  • Web
  • Api
  • GraphQL
  • Image Upload
  • Stripe - Payment - Even more than that
  • Drizzle + PostgresQL
  • Docs Website oku-ui/oku-ui.com#84
  • ... more

If you have anything you want, please let me know in the comments, maybe it will help me to move forward. I am open to all feedback.I am sure the contributions will increase as the structure slowly emerges. Especially follow pr.

List and research to be done

I finally figured out how to make the structure. I wrote it for GraphQL, I'm going to do some tests on my own project today and this week and then I'll open a few more and publish them. Yes, this will be a Nuxt 3 Module and I am coming up with a structure that will make it easier for you to contribute.

I want to see what you want most in the ecosystem.

Which software libraries do you use frequently in Nuxt 3 ? What are your repetitive structures

  • graphql-yoga
  • graphql codegen
  • node-cron
  • rabbitmq
  • bullmq
  • drizzle
  • ...You write one too.

Tell me what you want and we'll try to find a solution.

image

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Location: renovate.json
Error type: The renovate configuration file contains some invalid settings
Message: Invalid configuration option: packageRules[0].

`rpc?.broadcast.showNotification` dont working

devtools broadcast structure not working. I don't know if I did a wrong installation in the devtools module structure.

TODO

Arash Sheyda 
Probably because there is something wrong with the rpc setup

You can check this repo for example
https://github.com/arashsheyda/nuxt-devtools-rpc-starter

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Edited/Blocked

These updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.

  • fix(deps): update all patch updates (@capacitor/action-sheet, @capacitor/android, @capacitor/cli, @capacitor/core, @capacitor/ios, @iconify-json/carbon, @iconify-json/ph, @ionic/core, @nuxt/kit, @nuxt/schema, @nuxt/test-utils, @nuxtjs/color-mode, @nuxtjs/i18n, @revenuecat/purchases-capacitor, @tailwindcss/typography, @types/node, @urql/core, @urql/exchange-graphcache, @vee-validate/zod, @vue/test-utils, bullmq, bumpp, changelogithub, clsx, drizzle-kit, drizzle-orm, nanoid, notivue, nuxt, radix-vue, shadcn-nuxt, typescript, vee-validate, vite, vitepress, vue, vue-router, yaml)
  • chore(deps): update all minor updates (@0no-co/graphqlsp, @antfu/eslint-config, @aws-sdk/client-s3, @aws-sdk/client-ses, @aws-sdk/s3-request-presigner, @egoist/tailwindcss-icons, @graphql-tools/utils, @nuxt/devtools, @nuxt/devtools-kit, @nuxt/devtools-ui-kit, @nuxt/module-builder, @nuxtjs/tailwindcss, @vitest/coverage-v8, arctic, bumpp, eslint, gql.tada, happy-dom, ioredis, json-editor-vue, lucia, lucide-vue-next, nx, playwright-core, tailwind-merge, vitest, zod, com.android.tools.build:gradle)

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Ignored or Blocked

These are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.

Detected dependencies

cocoapods
themes/pergel-capacitor/ios/App/Podfile
github-actions
.github/workflows/autofix.yml
  • actions/checkout v4
  • actions/setup-node v4
  • actions/cache v4
  • autofix-ci/action ea32e3a12414e6d3183163c3424a7d7a8631ad84
.github/workflows/ci.yml
  • actions/checkout v4
  • actions/setup-node v4
  • actions/cache v4
.github/workflows/deleteCache.yml
.github/workflows/docs.yml
  • actions/checkout v4
  • actions/setup-node v4
  • actions/cache v4
  • nitrodeploy/nitrodeploy-github-action v0.4.2
.github/workflows/release.yml
  • actions/checkout v4
  • actions/setup-node v4
gradle
themes/pergel-capacitor/android/gradle.properties
themes/pergel-capacitor/android/capacitor.settings.gradle
themes/pergel-capacitor/android/settings.gradle
themes/pergel-capacitor/android/variables.gradle
  • androidx.appcompat:appcompat 1.6.1
  • androidx.coordinatorlayout:coordinatorlayout 1.2.0
  • androidx.core:core-splashscreen 1.0.1
  • junit:junit 4.13.2
  • androidx.test.ext:junit 1.1.5
  • androidx.test.espresso:espresso-core 3.5.1
themes/pergel-capacitor/android/build.gradle
  • com.android.tools.build:gradle 8.3.1
  • com.google.gms:google-services 4.4.1
themes/pergel-capacitor/android/app/capacitor.build.gradle
themes/pergel-capacitor/android/app/build.gradle
gradle-wrapper
themes/pergel-capacitor/android/gradle/wrapper/gradle-wrapper.properties
  • gradle 8.2.1
npm
.docs/package.json
  • automd ^0.3.7
  • fast-glob ^3.3.2
  • nuxt ^3.11.1
  • pathe ^1.1.2
  • pergel ^0.13.1
  • typescript ^5.4.3
  • vitepress 1.1.0
  • vitepress-plugin-twoslash ^0.10.2
package.json
  • drizzle-kit ^0.20.14
  • drizzle-orm ^0.30.7
  • postgres ^3.4.4
  • @antfu/eslint-config ^2.13.0
  • @types/node ^20.12.4
  • automd ^0.3.7
  • bumpp 9.4.0
  • changelogithub ^0.13.5
  • eslint ^9.0.0
  • eslint-plugin-tailwindcss ^3.15.1
  • json-editor-vue ^0.14.0
  • lint-staged ^15.2.2
  • nx ^18.2.2
  • simple-git-hooks ^2.11.1
  • typescript ^5.4.3
  • vite 5.2.8
  • vitest ^1.5.0
  • bumpp 9.4.0
packages-core/cli/package.json
  • @antfu/ni ^0.21.12
  • @clack/prompts ^0.7.0
  • c12 ^1.10.0
  • citty ^0.1.6
  • consola ^3.2.3
  • giget ^1.2.3
  • globby ^14.0.1
  • pathe ^1.1.2
  • picocolors ^1.0.0
  • shelljs ^0.8.5
  • @types/node ^20.12.4
  • @types/shelljs ^0.8.15
  • @vitest/coverage-v8 ^1.5.0
  • esno ^4.7.0
  • tsup ^8.0.2
  • typescript ^5.4.3
packages-core/cli/playground/package.json
  • @aws-sdk/client-ses ^3.554.0
  • @faker-js/faker ^8.4.1
  • @json2csv/node ^7.0.6
  • @lucia-auth/adapter-drizzle 1.0.7
  • @lucia-auth/adapter-postgresql ^3.1.2
  • @pergel/module-box ^0.6.0
  • @pergel/module-graphql ^0.6.0
  • @pergel/module-s3 ^0.3.0
  • bullmq ^5.7.0
  • dotenv ^16.4.5
  • drizzle-kit ^0.20.14
  • drizzle-orm ^0.30.7
  • ioredis ^5.3.2
  • lucia ^3.1.1
  • node-cron ^3.0.3
  • oslo ^1.2.0
  • p-timeout ^6.1.2
  • postgres ^3.4.4
  • @types/node-cron ^3.0.11
  • pg ^8.11.5
packages-core/package.json
  • bumpp ^9.4.0
  • unbuild ^2.0.0
  • bumpp 9.3.0
packages-core/pergel/package.json
packages/box/package.json
  • @egoist/tailwindcss-icons ^1.7.4
  • @faker-js/faker ^8.4.1
  • @iconify-json/carbon ^1.1.31
  • @iconify-json/ph ^1.1.12
  • @neoconfetti/vue ^2.2.1
  • @nuxtjs/color-mode ^3.4.0
  • @nuxtjs/google-fonts ^3.2.0
  • @nuxtjs/i18n ^8.3.0
  • @nuxtjs/tailwindcss ^6.11.4
  • @oku-ui/label ^0.6.1
  • @oku-ui/primitives ^0.6.1
  • @oku-ui/slot ^0.6.1
  • @oku-ui/use-composable ^0.6.1
  • @pinia/nuxt ^0.5.1
  • @tailwindcss/aspect-ratio ^0.4.2
  • @tailwindcss/forms ^0.5.7
  • @tailwindcss/typography ^0.5.12
  • @types/uuid ^9.0.8
  • @unovis/ts ^1.4.0
  • @unovis/vue ^1.4.0
  • @vee-validate/zod ^4.12.6
  • @vueuse/core ^10.9.0
  • @vueuse/nuxt ^10.9.0
  • class-variance-authority ^0.7.0
  • clsx ^2.1.0
  • date-fns ^3.6.0
  • lucide-vue-next ^0.368.0
  • nanoid ^5.0.6
  • notivue ^2.4.0
  • nuxt-icon ^0.6.10
  • pinia ^2.1.7
  • radix-vue ^1.7.0
  • shadcn-nuxt ^0.10.2
  • slugify ^1.6.6
  • tailwind-merge ^2.2.2
  • tailwindcss-animate ^1.0.7
  • unsearch ^0.0.2
  • uuid ^9.0.1
  • v-calendar ^3.1.2
  • vee-validate ^4.12.6
  • vue-input-otp ^0.1.0
  • zod ^3.22.4
packages/graphql/package.json
  • @apollo/sandbox ^2.5.1
  • @graphql-codegen/cli ^5.0.2
  • @graphql-codegen/core ^4.0.2
  • @graphql-codegen/plugin-helpers ^5.0.3
  • @graphql-codegen/schema-ast ^4.0.2
  • @graphql-codegen/typed-document-node ^5.0.6
  • @graphql-codegen/typescript ^4.0.6
  • @graphql-codegen/typescript-operations ^4.2.0
  • @graphql-codegen/typescript-resolvers ^4.0.6
  • @graphql-codegen/typescript-urql-graphcache ^3.1.0
  • @graphql-codegen/urql-introspection ^3.0.0
  • @graphql-tools/graphql-file-loader ^8.0.1
  • @graphql-tools/load ^8.0.2
  • @graphql-tools/schema ^10.0.3
  • @graphql-tools/utils ^10.1.2
  • dataloader ^2.2.2
  • graphql ^16.8.1
  • graphql-relay ^0.10.1
  • graphql-scalars ^1.23.0
  • graphql-yoga ^5.3.0
  • ts-relay-cursor-paging ^2.1.0
  • graphql ^16.8.1
  • graphql >=16.8.1
packages/nuxt/client/package.json
  • @vueuse/core ^10.9.0
  • class-variance-authority ^0.7.0
  • clsx ^2.1.0
  • lucide-vue-next ^0.368.0
  • radix-vue ^1.7.0
  • tailwind-merge ^2.2.2
  • tailwindcss-animate ^1.0.7
  • @nuxtjs/tailwindcss ^6.11.4
  • shadcn-nuxt ^0.10.2
packages/nuxt/package.json
  • @nuxt/devtools ^1.1.5
  • @nuxt/devtools-kit ^1.1.5
  • @nuxt/kit ^3.11.1
  • @vueuse/core ^10.9.0
  • consola ^3.2.3
  • defu ^6.1.4
  • globby ^14.0.1
  • local-pkg ^0.5.0
  • minimatch ^9.0.4
  • pathe ^1.1.2
  • sirv ^2.0.4
  • yaml ^2.4.1
  • @0no-co/graphqlsp ^1.10.0
  • @antfu/eslint-config ^2.13.0
  • @aws-sdk/client-ses ^3.554.0
  • @capacitor/action-sheet 6.0.0-rc.1
  • @capacitor/android 6.0.0-rc.2
  • @capacitor/app ^5.0.7
  • @capacitor/app-launcher ^5.0.7
  • @capacitor/cli 6.0.0-rc.2
  • @capacitor/core 6.0.0-rc.2
  • @capacitor/ios 6.0.0-rc.2
  • @faker-js/faker ^8.4.1
  • @graphql-yoga/urql-exchange ^3.3.0
  • @iconify-json/carbon ^1.1.31
  • @iconify-json/ph ^1.1.12
  • @ionic/cli ^7.2.0
  • @ionic/core ^7.8.3
  • @json2csv/node ^7.0.6
  • @lucia-auth/adapter-drizzle 1.0.7
  • @lucia-auth/adapter-postgresql 3.1.2
  • @lucia-auth/oauth ^3.5.3
  • @nuxt/devtools-ui-kit ^1.1.5
  • @nuxt/module-builder ^0.5.5
  • @nuxt/schema ^3.11.1
  • @nuxt/test-utils ^3.12.0
  • @nuxtjs/ionic ^0.13.1
  • @pergel/cli ^0.11.0
  • @revenuecat/purchases-capacitor ^7.5.6
  • @trapezedev/project ^7.0.10
  • @types/node ^20.12.4
  • @types/node-cron ^3.0.11
  • @urql/core ^5.0.0
  • @urql/exchange-execute ^2.2.2
  • @urql/exchange-graphcache ^7.0.0
  • @urql/vue ^1.1.3
  • @vue/test-utils ^2.4.5
  • arctic ^1.5.0
  • bullmq ^5.7.0
  • c12 ^1.10.0
  • dotenv ^16.4.5
  • drizzle-kit ^0.20.14
  • drizzle-orm ^0.30.7
  • esbuild-plugin-file-path-extensions ^2.0.0
  • eslint ^9.0.0
  • eslint-plugin-tailwindcss ^3.15.1
  • gql.tada ^1.4.2
  • graphql ^16.8.1
  • h3 ^1.11.1
  • happy-dom ^14.7.0
  • ioredis ^5.3.2
  • jiti ^1.21.0
  • json-schema-to-typescript ^13.1.2
  • lint-staged ^15.2.2
  • lucia 3.1.1
  • node-cron ^3.0.3
  • nuxt ^3.11.1
  • oslo ^1.2.0
  • p-timeout ^6.1.2
  • pg ^8.11.5
  • playwright-core ^1.43.0
  • postgres ^3.4.4
  • scule ^1.3.0
  • simple-git-hooks ^2.11.1
  • slugify ^1.6.6
  • typescript ^5.4.3
  • unimport ^3.7.1
  • vitest ^1.5.0
  • vue-input-otp ^0.1.0
packages/nuxt/playgrounds/drizzle/package.json
  • @faker-js/faker ^8.4.1
  • @json2csv/node ^7.0.6
  • @lucia-auth/adapter-drizzle 1.0.7
  • @lucia-auth/adapter-postgresql 3.1.2
  • drizzle-kit ^0.20.14
  • drizzle-orm ^0.30.7
  • lucia 3.1.1
  • postgres ^3.4.4
  • pergel ^0.13.1
  • pg ^8.11.5
packages/nuxt/playgrounds/gql.tada/package.json
  • gql.tada ^1.4.2
  • @0no-co/graphqlsp ^1.10.0
  • pergel ^0.13.1
  • typescript ^5.4.3
packages/s3/package.json
  • @aws-sdk/client-s3 ^3.554.0
  • @aws-sdk/s3-request-presigner ^3.554.0
themes/pergel-auth/package.json
  • @aws-sdk/client-ses ^3.554.0
  • @faker-js/faker ^8.4.1
  • @graphql-yoga/urql-exchange ^3.3.0
  • @lucia-auth/adapter-drizzle ^1.0.7
  • @lucia-auth/adapter-postgresql ^3.1.2
  • @lucia-auth/oauth ^3.5.3
  • @urql/core ^5.0.0
  • @urql/exchange-execute ^2.2.2
  • @urql/exchange-graphcache ^7.0.0
  • @urql/vue ^1.1.3
  • @vee-validate/zod ^4.12.6
  • arctic ^1.5.0
  • dotenv ^16.4.5
  • drizzle-kit ^0.20.14
  • drizzle-orm ^0.30.7
  • graphql ^16.8.1
  • lucia 3.1.1
  • oslo ^1.2.0
  • postgres ^3.4.4
  • @nuxt/test-utils ^3.12.0
  • @vue/test-utils ^2.4.5
  • happy-dom ^14.7.0
  • nuxt ^3.11.1
  • pergel ^0.13.1
  • pg ^8.11.5
  • playwright-core ^1.43.0
  • tailwindcss-animate ^1.0.7
  • typescript ^5.4.3
  • vitest ^1.5.0
  • vue 3.4.21
  • vue-router ^4.3.0
themes/pergel-capacitor/package.json
  • @capacitor/action-sheet 6.0.0-rc.1
  • @capacitor/android 6.0.0-rc.2
  • @capacitor/core 6.0.0-rc.2
  • @capacitor/ios 6.0.0-rc.2
  • @capacitor/cli 6.0.0-rc.2
  • @trapezedev/project ^7.0.10
  • nuxt ^3.11.1
  • pergel ^0.13.1
  • vue 3.4.21
  • vue-router ^4.3.0
themes/pergel-ionic/package.json
  • @capacitor/cli ^5.7.4
  • @ionic/cli ^7.2.0
  • @ionic/core ^7.8.3
  • @nuxtjs/ionic ^0.13.1
  • nuxt ^3.11.1
  • vue 3.4.21
  • vue-router ^4.3.0
nvm
.docs/.nvmrc
.nvmrc

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.