generated from nhcarrigan/template
feat: initial prototype works
I can log in and create a book! Woo!
This commit is contained in:
+12
-4
@@ -5,7 +5,14 @@
|
||||
"scripts": {
|
||||
"lint": "nx run-many --target=lint --all",
|
||||
"build": "nx run-many --target=build --all",
|
||||
"test": "nx run-many --target=test --all --passWithNoTests"
|
||||
"test": "nx run-many --target=test --all --passWithNoTests",
|
||||
"build:frontend": "nx build frontend --configuration=production",
|
||||
"build:api": "nx build api",
|
||||
"build:prod": "npm run build:frontend && npm run build:api",
|
||||
"start:api:dev": "nx serve api",
|
||||
"start:frontend:dev": "nx serve frontend",
|
||||
"start:prod": "NODE_ENV=production node dist/api/main.js",
|
||||
"start": "NODE_ENV=production op run --env-file=prod.env -- node dist/api/main.js"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
@@ -19,8 +26,9 @@
|
||||
"@fastify/cookie": "^11.0.2",
|
||||
"@fastify/jwt": "^10.0.0",
|
||||
"@fastify/oauth2": "^8.1.2",
|
||||
"@fastify/sensible": "5.6.0",
|
||||
"@prisma/client": "7.3.0",
|
||||
"@fastify/sensible": "6.0.4",
|
||||
"@fastify/static": "^9.0.0",
|
||||
"@prisma/client": "6.19.2",
|
||||
"fastify": "5.2.2",
|
||||
"fastify-plugin": "5.0.1",
|
||||
"rxjs": "7.8.2"
|
||||
@@ -61,7 +69,7 @@
|
||||
"jest-environment-node": "30.2.0",
|
||||
"jest-util": "30.2.0",
|
||||
"nx": "22.4.4",
|
||||
"prisma": "7.3.0",
|
||||
"prisma": "6.19.2",
|
||||
"ts-jest": "29.4.6",
|
||||
"ts-node": "10.9.1",
|
||||
"tslib": "2.8.1",
|
||||
|
||||
Reference in New Issue
Block a user