27 lines
697 B
JSON
27 lines
697 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",
|
|
"mustache": "^2.3.0",
|
|
"ws": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.11.0"
|
|
}
|
|
}
|