-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1008 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
29
{
"name": "mgda-website",
"version": "1.0.0",
"description": "Website for the Maringá GameDev Association.",
"main": "index.js",
"repository": "https://github.com/theosirian/mgda-website.git",
"author": "Tiago Nascimento <[email protected]>",
"contributors": ["Guilherme Chichanoski <[email protected]>"],
"license": "MIT",
"private": false,
"dependencies": {
"live-server": "^1.2.0",
"node-sass-chokidar": "^1.3.0",
"pug-cli": "^1.0.0-alpha6",
"static-server": "^2.2.1",
"yarn-run-all": "^3.1.1"
},
"scripts": {
"build:html": "pug ./src/pages -o ./docs",
"build:css": "node-sass-chokidar ./src/css -o ./docs/css",
"build": "run-s build:*",
"live:html": "pug --watch ./src/pages -o ./docs",
"live:css": "node-sass-chokidar ./src/css -o ./docs/css --watch",
"live:serve":
"live-server --host=0.0.0.0 --port=1337 --browser=qutebrowser --watch=docs docs",
"live": "run-p live:*",
"start": "yarn run live"
}
}