Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
achul123 committed Nov 18, 2024
1 parent 57b5d62 commit c5e6f2f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist/
prisma/*
!prisma/schema.prisma
/package-lock.json
/logs
Empty file removed logs/.gitignore
Empty file.
Empty file removed logs/combined.log
Empty file.
Empty file removed logs/error.log
Empty file.
2 changes: 1 addition & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"watch": ["src"],
"ext": "ts",
"exec": "npx tsc && node ."
"exec": "npx tsc && node dist/app.js"
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/app.js",
"start": "npm run serve",
"start": "npm run serve",
"build:css": "tailwindcss -i ./public/tw.conf -o ./public/styles.css",
"watch:css": "tailwindcss -i ./public/tw.conf -o ./public/styles.css --watch",
"build": "tsc",
Expand All @@ -26,12 +26,14 @@
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"prisma": "^5.22.0",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-session": "^1.18.1"
"express-session": "^1.18.1",
"prisma": "^5.22.0"
},
"devDependencies": {
"@prisma/client": "^5.22.0",
"@tailwindcss/forms": "^0.5.9",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.0",
Expand All @@ -42,8 +44,6 @@
"@types/node": "^22.8.6",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.13",
"@prisma/client": "^5.22.0",
"@tailwindcss/forms": "^0.5.9",
"express-ws": "^5.0.2",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
Expand Down

0 comments on commit c5e6f2f

Please sign in to comment.