mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 10:49:02 +00:00
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "darkwire-server",
|
|
"version": "2.0.0-beta.8",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"contributors": [
|
|
{
|
|
"name": "Daniel Seripap"
|
|
},
|
|
{
|
|
"name": "Alan Friedman"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"@babel/plugin-transform-runtime": "^7.9.6",
|
|
"@babel/runtime": "^7.9.6",
|
|
"bluebird": "^3.5.1",
|
|
"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.13",
|
|
"mailgun-js": "^0.22.0",
|
|
"moment": "^2.18.1",
|
|
"redis": "^2.8.0",
|
|
"socket.io": "^2.0.3",
|
|
"socket.io-redis": "^5.2.0",
|
|
"uuid": "^3.3.2"
|
|
},
|
|
"scripts": {
|
|
"build": "./build.sh",
|
|
"dev": "nodemon src/index.js --exec babel-node",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"start": "node dist/src/index.js",
|
|
"lint": "eslint src"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/node": "^7.8.7",
|
|
"@babel/plugin-transform-async-to-generator": "^7.8.3",
|
|
"@babel/preset-env": "^7.9.6",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^26.0.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"jest": "^26.0.0",
|
|
"nodemon": "^2.0.3",
|
|
"prettier": "^2.0.5"
|
|
}
|
|
}
|