platypush-app/service/package.json

30 lines
762 B
JSON

{
"name": "platypush-app-service",
"version": "1.0.0",
"description": "Backend/middleware service for the Platypush app",
"main": "server.js",
"scripts": {
"start": "node server.bundle.js",
"build": "webpack",
"dev": "nodemon ./server.js localhost 3080"
},
"repository": {
"type": "git",
"url": "git+https://git.platypush.tech/platypush/platypush-app.git"
},
"author": "Fabio Manganiello",
"license": "MIT",
"bugs": {
"url": "https://git.platypush.tech/platypush/platypush-app/-/issues"
},
"homepage": "https://git.platypush.tech/platypush/platypush-app",
"dependencies": {
"bonjour": "^3.5.0",
"express": "^4.17.1",
"websocket": "^1.0.33"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}