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

35 lines
778 B
JSON
Raw Normal View History

2018-09-30 18:21:59 +00:00
{
"name": "yvk-fftcg-backend",
"version": "0.1.0",
2018-10-02 00:17:04 +00:00
"description": "FFTCG online using Socket.IO and CraftyJS on Node.js on Docker",
2018-09-30 18:21:59 +00:00
"author": "JMM <jmm@yavook.de>",
"main": "server.coffee",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "coffee server.coffee",
"watch": "nodemon server.coffee",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"coffeescript": "^2.3.2",
"connect-redis": "^3.4.0",
"express": "^4.16.4",
2018-12-15 20:09:01 +00:00
"express-session": "^1.15.6",
"express-socket.io-session": "^1.3.5",
"helmet": "^3.15.0",
2018-11-29 12:15:24 +00:00
"socket.io": "^2.2.0",
2018-12-07 09:38:46 +00:00
"sqlite3": "^4.0.4"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}