mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
2.2 KiB
JSON
64 lines
2.2 KiB
JSON
{
|
|
"name": "rallly",
|
|
"private": true,
|
|
"version": "3.11.2",
|
|
"scripts": {
|
|
"dev": "turbo dev --filter=@rallly/web",
|
|
"dev:emails": "turbo dev --filter=@rallly/emails",
|
|
"dev:landing": "dotenv -c development turbo dev --filter=@rallly/landing",
|
|
"start": "turbo run start --filter=@rallly/web",
|
|
"build": "dotenv -c -- turbo run build --filter=@rallly/web",
|
|
"build:web": "NEXT_PUBLIC_APP_VERSION=$(node scripts/inject-version.js) turbo run build --filter=@rallly/web",
|
|
"build:landing": "turbo run build --filter=@rallly/landing",
|
|
"build:test": "turbo build:test",
|
|
"docs:dev": "turbo dev --filter=@rallly/docs...",
|
|
"db:deploy": "prisma migrate deploy",
|
|
"db:generate": "prisma generate",
|
|
"db:migrate": "prisma migrate dev",
|
|
"db:reset": "prisma migrate reset",
|
|
"db:push": "prisma db push",
|
|
"docker:up": "docker compose -f docker-compose.dev.yml up -d && wait-on --timeout 60000 tcp:localhost:5450",
|
|
"docker:down": "docker compose -f docker-compose.dev.yml down --volumes --remove-orphans",
|
|
"test:integration": "turbo test:integration",
|
|
"test:unit": "turbo test:unit",
|
|
"lint": "turbo lint",
|
|
"i18n:scan": "turbo i18n:scan",
|
|
"type-check": "turbo type-check",
|
|
"format": "prettier --write .",
|
|
"release": "./scripts/create-release.sh",
|
|
"sherif": "npx sherif@latest",
|
|
"sherif:fix": "npx sherif@latest --fix"
|
|
},
|
|
"prisma": {
|
|
"seed": "yarn workspace @rallly/database db:seed",
|
|
"schema": "./packages/database/prisma/schema.prisma"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"devDependencies": {
|
|
"@prisma/client": "^6.4.1",
|
|
"@sentry/nextjs": "^8.49.0",
|
|
"@types/react": "^18.2.48",
|
|
"@types/react-dom": "^18.2.18",
|
|
"dotenv-cli": "^7.1.0",
|
|
"framer-motion": "^10.16.4",
|
|
"next": "^14.2.25",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"tailwindcss": "^3.4.4",
|
|
"turbo": "^2.4.4",
|
|
"typescript": "^5.8.2",
|
|
"vitest": "^2.1.9",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"engines": {
|
|
"node": "20.x"
|
|
},
|
|
"packageManager": "yarn@1.22.22",
|
|
"dependencies": {}
|
|
}
|