mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-24 21:13:18 +00:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "darkwire-server",
|
|
"version": "2.0.0-beta.8",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"module": "src/index.js",
|
|
"contributors": [
|
|
{
|
|
"name": "Daniel Seripap"
|
|
},
|
|
{
|
|
"name": "Alan Friedman"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"@socket.io/redis-adapter": "^8.2.1",
|
|
"dotenv": "^16.3.1",
|
|
"kcors": "^2.2.2",
|
|
"koa": "^2.3.0",
|
|
"koa-body": "^2.3.0",
|
|
"koa-router": "^12.0.1",
|
|
"koa-send": "^5.0.1",
|
|
"koa-static": "^5.0.0",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.18.1",
|
|
"redis": "^4.5.1",
|
|
"socket.io": "^4.5.4",
|
|
"socket.io-adapter": "^2.5.2"
|
|
},
|
|
"scripts": {
|
|
"build": "echo 'Nothing to build here.'",
|
|
"dev": "nodemon src/index.js",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
|
|
"test:watch": "yarn test --watch",
|
|
"start": "node src/index.js",
|
|
"lint": "eslint src"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.29.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.2",
|
|
"jest": "^29.3.1",
|
|
"nodemon": "^3.0.2",
|
|
"prettier": "^3.1.1"
|
|
}
|
|
}
|