-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.63 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
46
{
"name": "processwire-dev",
"version": "1.0.0",
"description": "Source code for processwire.dev, a comprehensive guide to proficient ProcessWire development.",
"keywords": [
"eleventy",
"processwire"
],
"homepage": "https://processwire.dev",
"bugs": "https://github.com/MoritzLost/ProcessWireDev/issues",
"repository": {
"type": "git",
"url": "https://github.com/MoritzLost/ProcessWireDev.git"
},
"license": "UNLICENSED",
"author": "MoritzLost <[email protected]>",
"scripts": {
"build": "npm run build:eleventy && npm run generate-preview-images && npm run build:sass",
"build:eleventy": "eleventy",
"build:sass": "sass --style compressed --no-source-map src/_sass/main.scss dist/css/main.css",
"start": "npm-run-all build:sass -p watch:*",
"watch:eleventy": "eleventy --serve",
"watch:sass": "sass --watch --style expanded --embed-source-map src/_sass/main.scss dist/css/main.css",
"generate-preview-images": "node ./src/generate-preview-images.js"
},
"dependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@fortawesome/fontawesome-free": "^6.1.1",
"generate-preview-images": "^0.3.0",
"hamburgers": "^1.2.1",
"jsdom": "^20.0.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"prism-themes": "^1.9.0",
"rfs": "^9.0.6",
"sass": "^1.53.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "^16.16.0",
"npm": "^8.13.2"
}
}