Convert server to nodeJS

This commit is contained in:
Thomas
2020-10-29 12:02:15 +01:00
parent 5fcc664f8f
commit 9e9adf30aa
25 changed files with 1995 additions and 1162 deletions

26
server/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "tronio-server",
"version": "2.0.0",
"description": "Tron.io server",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.gltronic.ovh/gltron/Tron.io"
},
"author": "gltron",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
}
}