mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-24 13:06:20 +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": {
|
|
"dotenv": "^8.0.0",
|
|
"kcors": "^2.2.2",
|
|
"koa": "^2.3.0",
|
|
"koa-body": "^2.3.0",
|
|
"koa-router": "^7.2.1",
|
|
"koa-send": "^5.0.0",
|
|
"koa-static": "^5.0.0",
|
|
"lodash": "^4.17.20",
|
|
"mailgun-js": "^0.22.0",
|
|
"moment": "^2.18.1",
|
|
"redis": "^4.5.1",
|
|
"socket.io": "^4.5.4",
|
|
"socket.io-redis": "^6.1.1"
|
|
},
|
|
"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": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.3.1",
|
|
"nodemon": "^2.0.20",
|
|
"prettier": "^2.8.1"
|
|
}
|
|
}
|