-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1007 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
30
31
32
33
34
35
36
37
{
"name": "privacyload",
"version": "0.0.1",
"description": "",
"main": "index.js",
"watch": {
"build:html": {
"patterns": [
"website/build"
],
"extensions": "pug",
"quiet": true
},
"build:css": {
"patterns": [
"website/build"
],
"extensions": "scss",
"quiet": true
}
},
"scripts": {
"build:html": "pug ./website/build/index.pug -o ./website/",
"build:css": "node-sass ./website/build/style.scss ./website/style.css",
"bs": "browser-sync website --files='*.css,*.html,*.js' -w",
"start": "concurrently --names \"pug,scss,browsersync\" -c \"red,magenta,green\" \"npm-watch build:html\" \"npm-watch build:css\" \"npm run build:css && npm run build:html && npm run bs\""
},
"author": "Hannes Liehr",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.24.6",
"concurrently": "^3.6.1",
"node-sass": "^4.9.2",
"npm-watch": "^0.3.0",
"pug-cli": "^1.0.0-alpha6"
}
}