2016-11-20 01:13:19 +00:00
|
|
|
{
|
|
|
|
"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",
|
2017-04-09 03:53:36 +00:00
|
|
|
"mustache": "^2.3.0",
|
2017-03-26 01:45:57 +00:00
|
|
|
"ws": "^2.2.2"
|
2017-04-09 03:53:36 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"nodemon": "^1.11.0"
|
2016-11-20 01:13:19 +00:00
|
|
|
}
|
|
|
|
}
|