pi-rfid-jukebox/package.json

26 lines
696 B
JSON

{
"name": "rfid",
"version": "1.0.0",
"description": "",
"main": "player.js",
"scripts": {
"build-css": "stylus source/stylesheets/index.styl -o static/css",
"watch-css": "stylus source/stylesheets/index.styl -o static/css -w",
"clean": "rm -rf static/css && mkdir -p static/css",
"build": "npm run clean && npm run build-css",
"watch": "npm run clean && npm run watch-css & nodemon player -e js,jade",
"start": "node player"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.14.0",
"glob": "^7.1.1",
"morgan": "^1.7.0",
"nodemon": "^1.9.2",
"pug": "^2.0.0-beta11",
"stylus": "^0.54.5",
"ws": "^2.2.2"
}
}