first commit

This commit is contained in:
2026-01-13 22:55:46 +01:00
parent 3a3b0b046d
commit 2faf2dd8dc
31 changed files with 8490 additions and 0 deletions

27
server/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha tests/**/*.test.js --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bs58": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"duckdb": "^1.4.3",
"express": "^5.2.1",
"socket.io": "^4.8.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"chai": "^6.2.2",
"mocha": "^11.7.5",
"socket.io-client": "^4.8.3"
}
}