This commit is contained in:
Max W. 2025-04-11 01:29:26 +02:00
parent 6aa9c53969
commit b271c94012

View File

@ -1,17 +1,16 @@
{ {
"name": "dev", "name": "pasteboard",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "A simple Hastebin alternative for pasting text and code snippets.",
"license": "ISC", "license": "ISC",
"author": "", "author": "Walzen665",
"type": "commonjs", "type": "commonjs",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "nodemon server.js", "start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"dependencies": { "dependencies": {
"express": "^5.1.0", "express": "^5.1.0"
"nodemon": "^3.1.9"
} }
} }