bin/package.json

26 lines
581 B
JSON
Raw Normal View History

2023-03-04 02:09:05 +01:00
{
"name": "blek-bin",
"version": "0.0.1",
"description": "A privacy-respecting, js-free alternative to pastebin",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2023-03-04 02:45:17 +01:00
"dev": "node index.js",
"prod": "node index.js"
2023-03-04 02:09:05 +01:00
},
"author": "b1ek",
"license": "MIT",
"dependencies": {
2023-03-04 02:31:07 +01:00
"body-parser": "^1.20.2",
2023-03-04 02:09:05 +01:00
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
2023-03-04 06:47:29 +01:00
"fancy-log": "^2.0.0",
2023-03-04 06:00:53 +01:00
"glob": "^9.2.1",
2023-03-04 02:09:05 +01:00
"pug": "^3.0.2"
2023-03-04 06:47:29 +01:00
},
"devDependencies": {
"gulp": "^4.0.2"
2023-03-04 02:09:05 +01:00
}
}