setup prisma orm

This commit is contained in:
2024-11-13 18:50:53 +01:00
parent 0db2a0c647
commit 1e9ad26db5
31 changed files with 17698 additions and 42 deletions
+3287
View File
File diff suppressed because it is too large Load Diff
+37 -1
View File
@@ -8,12 +8,15 @@
"name": "frontend-react",
"version": "0.1.0",
"dependencies": {
"@reactivex/rxjs": "^6.6.7",
"clsx": "^2.1.1",
"fp-ts": "^2.16.9",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-intl": "^3.25.0",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
"react-dom": "19.0.0-rc-66855b96-20241106",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/node": "^20",
@@ -1625,6 +1628,24 @@
"node": ">=14"
}
},
"node_modules/@reactivex/rxjs": {
"version": "6.6.7",
"resolved": "https://registry.npmjs.org/@reactivex/rxjs/-/rxjs-6.6.7.tgz",
"integrity": "sha512-xZIV2JgHhWoVPm3uVcFbZDRVJfx2hgqmuTX7J4MuKaZ+j5jN29agniCPBwrlCmpA15/zLKcPi7/bogt0ZwOFyA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^1.9.0"
},
"engines": {
"npm": ">=2.0.0"
}
},
"node_modules/@reactivex/rxjs/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"license": "0BSD"
},
"node_modules/@rtsao/scc": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
@@ -4083,6 +4104,12 @@
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/fp-ts": {
"version": "2.16.9",
"resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.9.tgz",
"integrity": "sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==",
"license": "MIT"
},
"node_modules/fraction.js": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
@@ -6673,6 +6700,15 @@
"queue-microtask": "^1.2.2"
}
},
"node_modules/rxjs": {
"version": "7.8.1",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz",
"integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/safe-array-concat": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz",
+4 -1
View File
@@ -9,12 +9,15 @@
"lint": "next lint"
},
"dependencies": {
"@reactivex/rxjs": "^6.6.7",
"clsx": "^2.1.1",
"fp-ts": "^2.16.9",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-intl": "^3.25.0",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
"react-dom": "19.0.0-rc-66855b96-20241106",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/node": "^20",