server/package.json
2025-03-30 20:05:58 +02:00

22 lines
406 B
JSON

{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha",
"start": "node --env-file=.env index.js",
"watch": "node --watch --env-file=.env index.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"mongodb": "^6.13.0",
"ws": "^8.18.0"
},
"devDependencies": {
"mocha": "^11.1.0"
}
}