-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1019 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1019 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
28
29
30
31
32
33
34
{
"name": "simple-website-2016",
"version": "1.0.0",
"description": "a simple nodejs example site",
"engines": {
"node": "6.9.1"
},
"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 -p 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radhack/simple-nodejs.git"
},
"author": "Originally Ben Gourley - Modified by AHG",
"license": "ISC",
"bugs": {
"url": "https://github.com/radhack/simple-nodejs/issues"
},
"homepage": "https://github.com/radhack/simple-nodejs#readme",
"dependencies": {
"express": "^4.14.0",
"jade": "^1.11.0",
"morgan": "^1.7.0",
"nodemon": "^1.9.2",
"stylus": "^0.54.5"
}
}