-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "eleventy-test-bed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ncu:check": "ncu",
"ncu:update": "ncu -u",
"develop:clean": "rimraf ./_develop",
"develop:eleventy:build": "cross-env NODE_ENV=develop npx @11ty/eleventy",
"develop:eleventy:watch": "cross-env NODE_ENV=develop npx @11ty/eleventy --serve",
"develop:build:clean": "npm-run-all --serial develop:clean develop:eleventy:build",
"develop:build:only": "npm-run-all --serial develop:eleventy:build",
"develop:watch": "npm-run-all --serial develop:clean develop:eleventy:watch",
"product:clean": "rimraf ./_product",
"product:eleventy:build": "cross-env NODE_ENV=product npx @11ty/eleventy",
"product:build": "npm-run-all --serial product:clean product:eleventy:build",
"product:serve": "npx serve ./_product -p 3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"cross-env": "^7.0.3",
"eleventy-plugin-toc": "^1.1.5",
"html-escaper": "^3.0.3",
"html-minifier": "^4.0.0",
"luxon": "^3.4.4",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"npm-check-updates": "^16.14.11",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"serve": "^14.2.1",
"sprintf-js": "^1.1.3"
},
"dependencies": {
"@picocss/pico": "1.5.10",
"lightbox2": "2.11.3"
}
}