0265afa054
Import the runnable game code, content, docs, scripts, and repo guidance while leaving local agent state, dependency installs, build output, and backup copies out of the published tree.
17 lines
384 B
JSON
17 lines
384 B
JSON
{
|
|
"name": "sysadmin-chronicles-server",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js",
|
|
"test": "node --test --test-concurrency=1 src/*.test.js src/services/*.test.js"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.0",
|
|
"express": "^4.18.0",
|
|
"ws": "^8.0.0"
|
|
}
|
|
}
|