WIP refacto

This commit is contained in:
Florian Schmitt 2022-04-14 09:21:17 +03:00
parent 324cd85a02
commit c71306264b
11 changed files with 2146 additions and 1632 deletions

View file

@ -1,9 +1,10 @@
{
"name": "scrumblr",
"description": "Web-based simulation of a physical agile sprint board that supports real-time collaboration.",
"version": "0.2.1",
"version": "1.0.0",
"license": "AGPL-3.0",
"repository": {
"url": "http://framagit.org/colibris/framemo"
"url": "https://framagit.org/colibris/framemo"
},
"author": "Ali Asaria",
"main": "server.js",
@ -14,20 +15,33 @@
"node": "0.4.7"
},
"scripts": {
"start": "node server.js"
"start": "nodemon server.js -e js,css,jade,json"
},
"nodemonConfig": {
"ignore": [
".DS_Store",
" /.git/*",
"*.rdb",
"docs/*"
]
},
"dependencies": {
"async": "~0.9.0",
"bootstrap-icons": "^1.8.1",
"compression": "^1.1.0",
"express": "4.x",
"html2canvas": "^1.4.1",
"jade": "~1.5.0",
"redis": "~0.12.1",
"reload": "^3.2.0",
"sanitizer": "~0.1.1",
"simplesets": "~1.2.0",
"socket.io": "1.x",
"typeface-inter": "^3.18.1",
"yargs": "~2.3.0"
},
"devDependencies": {
"forever": "^0.15.3"
"forever": "^0.15.3",
"nodemon": "^2.0.15"
}
}