initial config

This commit is contained in:
andrzej 2024-06-11 15:37:14 +02:00
parent 0afe6dae3c
commit 2dbff21921
2 changed files with 8 additions and 5 deletions

View File

@ -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"
}
}

View File

@ -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"]
}