23 lines
435 B
JSON
23 lines
435 B
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"testWatch": "mocha -w",
|
|
"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"
|
|
}
|
|
}
|