backend/package.json
creations 57fb8d8bb1
All checks were successful
Code quality checks / biome (push) Successful in 8s
add fast-jwt ( not tested ) and make the user actual register
2025-05-02 18:41:10 -04:00

28 lines
661 B
JSON

{
"name": "void_backend",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts --dev",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lockdb",
"setup": "bun run config/setup/index.ts"
},
"devDependencies": {
"@types/bun": "^1.2.11",
"@types/ejs": "^3.1.5",
"globals": "^16.0.0",
"@biomejs/biome": "^1.9.4"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@creations.works/logger": "^1.0.3",
"cassandra-driver": "^4.8.0",
"fast-jwt": "^6.0.1",
"pika-id": "^1.1.3"
}
}