haste-server/package.json

41 lines
955 B
JSON

{
"name": "haste",
"version": "0.2.5",
"description": "Private Pastebin Server - continued by zneix",
"keywords": [
"paste",
"pastebin",
"haste",
"hastebin"
],
"author": {
"name": "John Crepezzi",
"email": "john.crepezzi@gmail.com",
"url": "http://seejohncode.com/"
},
"main": "server.js",
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"babel-plugin-minify-mangle-names": "^0.5.0",
"busboy": "^0.3.1",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"ioredis": "^4.17.3",
"mongodb": "^3.6.2",
"pg": "^8.3.3",
"st": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.9.0",
"mocha": "^8.1.3"
},
"scripts": {
"build": "npm install && npx babel --plugins minify-mangle-names --no-comments --minified static/application.js --out-file static/application.min.js",
"start": "node server.js",
"test": "mocha --recursive",
"testformat": "npx eslint ./"
}
}