29 lines
711 B
JSON
29 lines
711 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",
|
|
"teardown": "bun run config/setup/teardown.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"
|
|
}
|
|
}
|