Feat: UserflowDataGatherer send correct datas; Feat: UserflowPredictorWebserver receive data and create userflowmap

This commit is contained in:
Lorenzo Iovino 2019-04-10 23:24:01 +02:00
parent 6feb5af4d0
commit 9946f8c057
26 changed files with 3977 additions and 22 deletions

View file

@ -0,0 +1,30 @@
{
"name": "predictorservice",
"version": "1.0.0",
"description": "",
"main": "main.js",
"dependencies": {
"@types/express": "^4.16.1",
"body-parser": "^1.18.3",
"canvas": "^2.4.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"nodemon": "^1.18.10",
"ws": "^6.2.1"
},
"devDependencies": {
"@types/node": "^11.13.0",
"@types/ws": "^6.0.1",
"ts-node": "^8.0.3",
"typescript": "^3.4.2",
"typescript-eslint-parser": "^22.0.0"
},
"scripts": {
"build": "tsc -w",
"dev": "ts-node ./src/main.ts",
"start": "nodemon ./dist/main.js",
"prod": "npm run build && npm run start"
},
"author": "",
"license": "ISC"
}