initial commit

This commit is contained in:
Daniel Lugo 2019-11-27 16:50:44 -04:00
parent 732a35ddf2
commit 3ee39e63c5
39 changed files with 15767 additions and 2 deletions

82
package.json Normal file
View file

@ -0,0 +1,82 @@
{
"name": "sw-server",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "node --experimental-modules src/server.js",
"dev": "node main.js -h 0.0.0.0",
"dev:watch": "nodemon main.js -- -h 0.0.0.0",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watch",
"typecheck": "tsc",
"eslint": "eslint services/**/*.js src/**/*.js utils/**/*.js config/**/*.js constants/**/*.js",
"lint": "eslint \"services/gunDB/**/*.js\"",
"format": "prettier --write \"./**/*.js\""
},
"husky": {
"hooks": {
"precommit": "eslint"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/proto-loader": "^0.5.1",
"axios": "^0.19.0",
"basic-auth": "^2.0.0",
"bitcore-lib": "^0.15.0",
"body-parser": "^1.16.0",
"colors": "^1.3.0",
"command-exists": "^1.2.6",
"commander": "^2.9.0",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^8.1.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"google-proto-files": "^1.0.3",
"graphviz": "0.0.8",
"grpc": "^1.21.1",
"gun": "^0.2019.1120",
"husky": "^3.0.9",
"jsonfile": "^4.0.0",
"jsonwebtoken": "^8.3.0",
"localtunnel": "^1.9.0",
"lodash": "^4.17.15",
"method-override": "^2.3.7",
"promise": "^8.0.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"response-time": "^2.3.2",
"shelljs": "^0.8.2",
"socket.io": "^2.1.1",
"text-encoding": "^0.7.0",
"tingodb": "^0.6.1",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/gun": "^0.9.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/socket.io": "^2.1.3",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.5",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^22.20.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"prettier": "^1.18.2",
"socket.io-client": "^2.2.0",
"typescript": "^3.6.3"
}
}