-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ways-to-play",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"watch:eleventy": "node --require esbuild-register node_modules/.bin/eleventy --serve --incremental",
"build:eleventy": "node --require esbuild-register node_modules/.bin/eleventy",
"build:eleventy-print": "cross-env IS_PRINT=print eleventy --output=print",
"test": "jest",
"start": "cross-env NODE_ENV=development npm-run-all watch:eleventy",
"build": "cross-env NODE_ENV=production npm-run-all build:eleventy",
"postbuild:postcss": "postcss public/css/*.css --use cssnano -r --no-map",
"postbuild:html": "find public -iname '*.html' -exec sed -i 's%<p></p>%%g' {} \\;",
"postbuild": "npm-run-all postbuild:*",
"serve-built": "serve public"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.2",
"@fec/eleventy-plugin-remark": "^4.0.0",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@jest/globals": "^29.5.0",
"@microflash/rehype-toc": "^1.0.2",
"@types/11ty__eleventy-img": "^4.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@types/prop-types": "^15.7.5",
"@types/slug": "^5.0.3",
"ajv": "^8.12.0",
"bootstrap": "^5.3.0",
"cross-env": "^7.0.3",
"cssnano": "^7.0.2",
"hast-util-has-property": "^3.0.0",
"hast-util-heading-rank": "^3.0.0",
"hast-util-to-string": "^3.0.0",
"isbn3": "^1.1.44",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"jsdom": "^24.0.0",
"liquid-args": "^1.0.0",
"npm-run-all": "^4.1.5",
"ordinal": "^1.0.3",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"prop-types": "^15.8.1",
"rehype-autolink-headings": "^7.0.0",
"rehype-format": "^5.0.0",
"rehype-raw": "^7.0.0",
"remark-sectionize": "^2.0.0",
"sass": "^1.69.7",
"serve": "^14.0.1",
"slug": "^9.0.0",
"ts-jest": "^29.1.0",
"ucd-full": "^15.0.0"
},
"dependencies": {
"esbuild-register": "^3.4.2",
"sharp": "^0.33.2",
"typescript": "^5.3.3"
}
}