-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "josh-to-11",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"11ty": "npx @11ty/eleventy",
"build": "node --version && npm rebuild sass && npm run 11ty && npm run sass",
"format": "prettier --write './**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "NODE_ENV=development npx @11ty/eleventy --serve --watch --quiet",
"debug": "NODE_ENV=development DEBUG=Eleventy* npx @11ty/eleventy --watch --dryrun",
"build-test": "NODE_ENV=development npx @11ty/eleventy --dryrun",
"dev": "npm run serve",
"sass": "sass sass:_dist/_css",
"sass:watch": "npm run sass -- --watch",
"make:post": "hygen post with-prompt",
"make:page": "hygen page with-prompt"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.17",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"html-minifier": "^4.0.0",
"hygen": "^6.2.11",
"marked": "^13.0.3",
"moment": "^2.30.1",
"sass": "^1.77.8",
"uuid": "^10.0.0"
}
}