-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
45
{
"name": "mastodon-poradnik",
"version": "2.0.0",
"private": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/lwojcik/Mastodon-Poradnik/issues"
},
"homepage": "https://mastodon-poradnik.pl",
"scripts": {
"clean": "rimraf _site",
"watch:sass": "sass --no-source-map --watch ./src/styles:_site/css",
"build:sass": "sass --no-source-map src/styles:_site/css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"debug": "DEBUG=Eleventy* npm run watch:eleventy",
"generate-epub": "node ./scripts/generate-epub.js",
"generate-pdf": "node ./scripts/generate-pdf.js",
"start": "npm run clean; npm-run-all build:sass --parallel watch:*",
"build": "npm run clean; npm-run-all build:*",
"postbuild": "npm run generate-epub; npm run generate-pdf",
"dev": "npm run start"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"date-fns": "^2.29.3",
"eleventy-plugin-emoji": "^1.1.0",
"eleventy-plugin-external-links": "^1.1.2",
"epub-gen": "^0.1.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-inclusive-language": "^2.2.0",
"html-minifier": "^4.0.0",
"html-pdf-node": "^1.0.8",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdownlint": "^0.26.2",
"node-html-parser": "^6.1.4",
"npm-run-all": "^4.1.5",
"pdf-creator-node": "^2.3.5",
"prettier": "^2.7.1",
"sass": "^1.57.1"
}
}