-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 746 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "blwol",
"version": "1.0.0",
"description": "Brainlab Wake on Lan website",
"main": "index.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 static\\css",
"build": "npm run clean && npm run build-css",
"watch": "npm run clean && npm run watch-css & nodemon server -e js,jade",
"start": "node server"
},
"keywords": [
"wol"
],
"author": "ricardo.gomes",
"license": "ISC",
"dependencies": {
"express": "^4.15.3",
"jade": "^1.11.0",
"morgan": "^1.8.2",
"nodemon": "^1.9.2",
"stylus": "^0.54.5",
"node-wol": "^0.1.1"
}
}