-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
28 lines (28 loc) · 971 Bytes
/
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
{
"name": "plex-landing-page",
"version": "0.2.0",
"description": "A landing page for your Plex media server",
"repository": "git@github.com:ryjo1026/plex-landing-page.git",
"author": "Ryan Johnston <ryjo1026@gmail.com>",
"license": "MIT",
"dependencies": {
"bulma": "^0.9.3"
},
"devDependencies": {
"mustache": "^4.2.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"watch": "^0.13.0"
},
"scripts": {
"build": "run-s build:*",
"build:css": "node-sass --omit-source-map-url assets/sass --output assets/css",
"build:html": "run-s build:html:*",
"build:html:html": "mustache templates/index.json templates/index.mustache > index.html",
"build:html:access": "mustache templates/access.json templates/access.mustache > access.html",
"watch": "run-p watch:*",
"watch:css": "$npm_execpath run build:css --watch",
"watch:html": "watch 'run-s build:html' ./templates",
"start": "run-s watch"
}
}