digivote/package.json

24 lines
566 B
JSON
Raw Normal View History

2022-01-12 08:48:18 +01:00
{
"name": "digivote",
"version": "0.1.0",
"description": "A digital voting system supporting motions, propositions, and live votes.",
"main": "index.js",
2022-01-12 20:54:11 +01:00
"type": "module",
2022-01-12 08:48:18 +01:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.qwik.space/BurnyLlama/digivote"
},
"author": "BurnyLlama",
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
2022-01-12 20:54:11 +01:00
"dotenv": "^11.0.0",
2022-01-12 08:48:18 +01:00
"express": "^4.17.2",
2022-01-12 20:54:11 +01:00
"mongodb": "^4.3.0",
"nunjucks": "^3.2.3",
"yaml": "^1.10.2"
2022-01-12 08:48:18 +01:00
}
}