This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/backend/package.json
2019-06-04 12:13:19 +02:00

30 lines
885 B
JSON

{
"name": "node-fftcg",
"version": "0.0.3",
"description": "FFTCG online using Socket.IO and CraftyJS on Node.js on Docker",
"author": "JMM <jmm@yavook.de>",
"main": "server.coffee",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "coffee server.coffee",
"dev": "nodemon server.coffee --exec 'yarn lint && yarn start'",
"lint": "eslint $(find . -name node_modules -prune -o \\( -type f -iname '*.coffee' -print \\))",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@fellow/eslint-plugin-coffee": "^0.4.13",
"eslint": "^5.16.0",
"nodemon": "^1.19.0"
},
"dependencies": {
"bcrypt": "^3.0.6",
"coffeescript": "^2.4.1",
"fastify": "^2.3.0",
"fastify-cors": "^2.1.3",
"fastify-ws": "^1.0.1",
"logging": "^3.2.0",
"redis": "^2.8.0",
"sqlite3": "^4.0.4"
}
}