-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "site",
"version": "1.0.0",
"description": "Landing page for Workshop - 2021",
"main": "index.js",
"scripts": {
"msg": "echo \"Keep it cool, my budie 🐊\"",
"msg-1": "echo \"Building... 🦑\"",
"dev-pug": "pug ./src/index.pug -P -w -o ./docs/",
"build-pug": "pug ./src/index.pug -o ./docs/",
"dev-sass": "node-sass -w ./src/scss -o ./docs/assets/css",
"build-sass": "node-sass ./src/scss -o ./docs/assets/css --output-style compressed",
"add": "git add .",
"commit": "gitmoji -c",
"push": "git push origin dev",
"dev": "npm-run-all -s msg -p dev-sass dev-pug",
"build": "npm-run-all -s msg-1 build-sass build-pug",
"done": "npm-run-all -s build add commit push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeyWorkshop/Site.git"
},
"keywords": [
"pug"
],
"bugs": {
"url": "https://github.com/HeyWorkshop/Site/issues"
},
"homepage": "https://github.com/HeyWorkshop/Site#readme",
"devDependencies": {
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6"
}
}