From 8b2c4a38a461ff5ecc95972291bc711e2c5dec9a Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Fri, 28 Apr 2023 01:47:57 +0800 Subject: --- examples/with-prisma/package.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/with-prisma/package.json (limited to 'examples/with-prisma/package.json') diff --git a/examples/with-prisma/package.json b/examples/with-prisma/package.json new file mode 100644 index 0000000..a335e16 --- /dev/null +++ b/examples/with-prisma/package.json @@ -0,0 +1,27 @@ +{ + "private": true, + "workspaces": [ + "apps/*", + "packages/*" + ], + "prisma": { + "schema": "packages/database/prisma/schema.prisma", + "seed": "tsx packages/database/src/seed.ts" + }, + "scripts": { + "build": "turbo run build", + "db:migrate:deploy": "turbo run db:migrate:deploy", + "db:push": "turbo run db:push", + "db:seed": "turbo run db:seed", + "dev": "turbo run dev", + "format": "prettier --write \"**/*.{ts,tsx,md}\"", + "generate": "turbo run generate", + "lint": "turbo run lint" + }, + "devDependencies": { + "prettier": "^2.5.1", + "tsx": "^3.7.1", + "turbo": "latest" + }, + "packageManager": "yarn@1.22.19" +} -- cgit v1.2.3-70-g09d2