feat(bun): adding the configuration for better developpement
This commit is contained in:
parent
6e154a8e60
commit
ac1abbabc7
5 changed files with 137 additions and 62 deletions
27
package.json
27
package.json
|
|
@ -4,7 +4,10 @@
|
|||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "bun --watch src/index.ts",
|
||||
"build": "bun build src/index.ts --outdir dist --target bun",
|
||||
"debug": "bun --watch src/index.ts --debug",
|
||||
"lint": "bunx eslint src --ext .ts,.js --fix || watch -n 0.5 bunx eslint src --ext .ts,.js",
|
||||
"lint:fix": "bunx eslint src --ext .ts,.js --fix",
|
||||
"type-check": "bunx tsc --noEmit",
|
||||
"prepare": "husky"
|
||||
},
|
||||
"private": true,
|
||||
|
|
@ -14,23 +17,27 @@
|
|||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"eslint": "^9.36.0",
|
||||
"@types/bun": "^1.3.0",
|
||||
"@types/node": "^24.7.2",
|
||||
"eslint": "^9.37.0",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-prettier": "^5.5.4",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^16.2.3",
|
||||
"lint-staged": "^16.2.4",
|
||||
"prettier": "^3.6.2",
|
||||
"prisma": "^6.16.3",
|
||||
"typescript-eslint": "^8.45.0"
|
||||
"prisma": "^6.17.1",
|
||||
"typescript-eslint": "^8.46.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5.9.2"
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "^6.16.3",
|
||||
"discord.js": "^14.22.1",
|
||||
"@discordjs/builders": "^1.12.2",
|
||||
"@prisma/client": "^6.17.1",
|
||||
"chalk": "^5.6.2",
|
||||
"discord.js": "^15.0.0-dev.1760227315-180dd60c6",
|
||||
"dotenv": "^17.2.3",
|
||||
"mariadb": "^3.4.5"
|
||||
"mariadb": "^3.4.5",
|
||||
"module-alias": "^2.2.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue