-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.56 KB
/
package.json
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
35
36
37
38
39
40
41
{
"name": "nodeschool-sf",
"version": "2.1.0",
"description": "The NodeSchool SF chapter website.",
"directories": {
"doc": "docs"
},
"scripts": {
"docs:build": "mkdir -p docs && npm-run-all --serial docs:build:*",
"docs:build:html": "mustache docs-src/data.json docs-src/index.mustache > docs/index.html",
"docs:build:styles": "mkdir -p docs/styles && stylus docs-src/styles/index.styl --out docs/styles --include node_modules --include-css",
"docs:build:images": "ncp docs-src/images docs/images",
"docs:watch": "mkdir -p docs && npm-run-all --parallel docs:watch:*",
"docs:watch:html": "chokidar docs-src/index.mustache -c 'npm run docs:build:html' --initial",
"docs:watch:styles": "npm run docs:build:styles -- -w",
"docs:watch:images": "chokidar docs-src/images/* -c 'npm run docs:build:images' --initial",
"docs:watch:fonts": "chokidar docs-src/fonts/* -c 'npm run docs:build:fonts' --initial",
"docs:server": "browser-sync start --server 'docs' --files 'docs' --port=8080",
"docs:dev": "npm-run-all --parallel docs:watch docs:server"
},
"repository": {
"type": "git",
"url": "https://github.com/nodeschool/sanfrancisco.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nodeschool/sanfrancisco/issues"
},
"homepage": "https://nodeschool.io/sanfrancisco",
"dependencies": {
"mustache": "^2.2.1"
},
"devDependencies": {
"browser-sync": "^3.0.3",
"chokidar-cli": "^3.0.0",
"mustache": "^2.3.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.0.2",
"stylus": "^0.54.5"
}
}