-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.58 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
38
39
40
41
42
43
44
{
"name": "11ty-reveal",
"version": "0.1.0",
"description": "Eleventy-powered reveal.js slideshow generator",
"author": "Reed Piernock",
"license": "GPL-3.0-only",
"homepage": "https://reedcodes.com/",
"repository": {
"type": "git",
"url": "https://github.com/reedcodes/11ty-reveal"
},
"bugs": {
"url": "https://github.com/reedcodes/11ty-reveal/issues"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@fortawesome/fontawesome-free": "^6.4.0",
"a11y-color-tokens": "0.6.*",
"eleventy-plugin-gen-favicons": "^1.1.2",
"eleventy-plugin-metagen": "^1.8.3",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"include-media": "^2.0.0",
"npm-run-all": "^4.1.5",
"reveal.js": "^4.5.0",
"sass": "^1.62.1"
},
"main": "gulpfile.js",
"scripts": {
"tokens": "npx a11y-color-tokens --colorTokensPath='source/_data/colors.js' --outputDirPath='source/_sass/color' --compatibilityDocsPath='source/_sass/color'",
"tokens:dark": "npx a11y-color-tokens --colorTokensPath='source/_data/colors-dark.js' --outputDirPath='source/_sass/color/dark' --compatibilityDocsPath='source/_sass/color/dark'",
"serve": "npx eleventy --serve",
"build:gulp": "gulp",
"build:11ty": "npx eleventy",
"build:fresh": "npm-run-all tokens build:gulp build:11ty",
"build": "npm-run-all build:gulp build:11ty",
"clean:up": "rm -rf ./site/",
"clean": "npm-run-all clean:up tokens build:gulp build:11ty"
}
}