25 lines
671 B
JSON
25 lines
671 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",
|
|
"jade": "^1.11.0",
|
|
"morgan": "^1.7.0",
|
|
"nodemon": "^1.9.2",
|
|
"stylus": "^0.54.5"
|
|
}
|
|
}
|