-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 KB
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
{
"name": "blog-exercise",
"version": "0.0.1",
"description": "blog exercise",
"author": "Reed Piernock",
"repository": {
"type": "git",
"url": "https://github.com/reedcodes/blog-exercise/"
},
"bugs": {
"url": "https://github.com/reedcodes/blog-exercise/issues/"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.1",
"@11ty/eleventy-img": "^6.0.4",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"sass": "^1.89.2"
},
"main": "eleventy.config.js",
"type": "module",
"scripts": {
"build:css": "sass --style=compressed --no-source-map ./source/presentation/scss:./site/presentation/css",
"test:css": "sass --style=compressed ./source/presentation/scss:./site/presentation/css",
"watch:css": "sass --watch ./source/presentation/scss:./site/presentation/css",
"build:site": "npx @11ty/eleventy",
"test:site": "cross-env BUILD_ENV=test npx @11ty/eleventy --dryrun",
"watch:site": "cross-env BUILD_ENV=dev npx @11ty/eleventy --quiet --serve",
"build": "npm-run-all build:*",
"test": "npm-run-all test:*",
"start": "npm-run-all --parallel watch:*"
}
}