first commit

This commit is contained in:
creations 2024-12-21 19:24:48 -05:00
commit a744ea6dcb
No known key found for this signature in database
GPG key ID: 35E9C06C9A9C8FEF
18 changed files with 713 additions and 0 deletions

33
package.json Normal file
View file

@ -0,0 +1,33 @@
{
"name": "bun_frontend_template",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts --dev",
"lint": "eslint",
"lint:fix": "bun lint --fix",
"cleanup": "rm -rf logs node_modules bun.lockdb"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bun": "^1.1.14",
"@types/ejs": "^3.1.5",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"ejs": "^3.1.10"
}
}