1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/mipilin synced 2025-05-12 00:03:06 +00:00

this is the initial commit for my AWESOME website

Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2024-11-13 22:51:08 -05:00
commit e3c09d7f0d
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
42 changed files with 5710 additions and 0 deletions

39
package.json Normal file
View file

@ -0,0 +1,39 @@
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "main.ts",
"scripts": {
"start": "tsx main.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^10.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.1",
"express": "^4.21.1",
"express-session": "^1.18.1",
"pg": "^8.13.1",
"pug": "^3.0.3",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/connect-flash": "^0.0.40",
"@types/connect-pg-simple": "^7.0.3",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/pg": "^8.11.10",
"@types/pug": "^2.0.10",
"drizzle-kit": "^0.28.0",
"tsx": "4.19.2"
}
}