aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-prisma/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-prisma/package.json')
-rw-r--r--examples/with-prisma/package.json27
1 files changed, 27 insertions, 0 deletions
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"
+}