diff --git a/package.json b/package.json index 4e8bfd8..9f17218 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "subman-nextjs", + "type":"module", "version": "0.1.0", "private": true, "scripts": { @@ -9,16 +10,18 @@ "lint": "next lint" }, "dependencies": { + "@prisma/client": "^5.15.0", + "next": "14.2.3", "react": "^18", - "react-dom": "^18", - "next": "14.2.3" + "react-dom": "^18" }, "devDependencies": { - "typescript": "^5", "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", "eslint": "^8", - "eslint-config-next": "14.2.3" + "eslint-config-next": "14.2.3", + "prisma": "^5.15.0", + "typescript": "^5" } } diff --git a/tsconfig.json b/tsconfig.json index 7b28589..cea4018 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,6 @@ "@/*": ["./src/*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "prisma/script.mts"], "exclude": ["node_modules"] }