memo/package.json

48 lines
1 KiB
JSON
Raw Normal View History

{
"name": "scrumblr",
"description": "Web-based simulation of a physical agile sprint board that supports real-time collaboration.",
2022-04-14 09:21:17 +03:00
"version": "1.0.0",
"license": "AGPL-3.0",
"repository": {
2022-04-14 09:21:17 +03:00
"url": "https://framagit.org/colibris/framemo"
},
"author": "Ali Asaria",
"main": "server.js",
"directories": {
"lib": "lib/"
},
"engines": {
2023-03-05 10:19:34 +03:00
"node": ">=0.4.7"
},
2021-12-10 18:29:32 +01:00
"scripts": {
2022-04-14 09:21:17 +03:00
"start": "nodemon server.js -e js,css,jade,json"
},
"nodemonConfig": {
"ignore": [
".DS_Store",
" /.git/*",
"*.rdb",
"docs/*"
]
2021-12-10 18:29:32 +01:00
},
"dependencies": {
2014-10-12 17:17:15 -04:00
"async": "~0.9.0",
2023-03-05 10:19:34 +03:00
"bootstrap-icons": "^1.8.2",
2014-10-12 17:17:15 -04:00
"compression": "^1.1.0",
2023-03-05 10:19:34 +03:00
"express": "^4.18.1",
2022-04-14 09:21:17 +03:00
"html2canvas": "^1.4.1",
2014-10-12 17:17:15 -04:00
"jade": "~1.5.0",
"redis": "~0.12.1",
2022-04-14 09:21:17 +03:00
"reload": "^3.2.0",
2014-10-12 17:17:15 -04:00
"sanitizer": "~0.1.1",
"simplesets": "~1.2.0",
"socket.io": "1.x",
2022-04-14 09:21:17 +03:00
"typeface-inter": "^3.18.1",
"yargs": "~2.3.0"
},
"devDependencies": {
2022-04-14 09:21:17 +03:00
"forever": "^0.15.3",
2023-03-05 10:19:34 +03:00
"nodemon": "^2.0.16"
}
}