-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 750 Bytes
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
{
"name": "my-website",
"version": "1.0.0",
"description": "Dev code for my website",
"scripts": {
"build:html": "pug pug/ --out .",
"build:css": "sass sass/styles.sass stylesheets/styles.css && sass sass/cv.sass stylesheets/cv.css",
"build": "npm run build:html && npm run build:css",
"watch:html": "pug pug/ --out . --watch",
"watch:css": "sass --watch sass/styles.sass:stylesheets/styles.css sass/cv.sass:stylesheets/cv.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinasBeres/my-website.git"
},
"author": "Linas Beresna",
"license": "MIT",
"devDependencies": {
"pug-cli": "^1.0.0-alpha6",
"sass": "1.77.8"
},
"dependencies": {
"package.json": "^2.0.1"
}
}