-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.08 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
{
"name": "basic-pattern-repository",
"version": "0.6.0",
"description": "",
"author": "Thomas Michael Semmler",
"main": ".eleventy.js",
"scripts": {
"eleventy:serve": "eleventy --serve",
"eleventy:build": "eleventy",
"eleventy:test": "eleventy --dryrun",
"sass:watch": "sass src/_scss:dist/css --watch --update --color",
"sass:build": "sass src/_scss:dist/css --no-source-map --style=compressed",
"subset-font": "./build_tasks/subset-font.sh",
"social-images:build": "./build_tasks/build-social-images.sh",
"clean": "del dist",
"start": "run-p -l clean sass:build sass:watch eleventy:serve",
"build": "run-s -l clean eleventy:build sass:build social-images:build",
"test": "npm run eleventy:test"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"@11tyrocks/eleventy-plugin-social-images": "^0.2.0",
"del": "^2.2.2",
"del-cli": "^3.0.1",
"dotenv": "^10.0.0",
"eleventy-plugin-svg-contents": "^0.7.0",
"npm-run-all": "^4.1.5",
"sass": "^1.34.0"
}
}