-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.15 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
{
"name": "ways-to-play",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"watch:eleventy": "npx tsx ./node_modules/.bin/eleventy --config=.eleventy.ts --serve --incremental",
"build:eleventy": "npx tsx ./node_modules/.bin/eleventy --config=.eleventy.ts",
"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": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@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/jsdom": "^21.1.7",
"@types/node": "^22.9.3",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/slug": "^5.0.9",
"ajv": "^8.17.1",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"hast-util-has-property": "^3.0.0",
"hast-util-heading-rank": "^3.0.0",
"hast-util-to-string": "^3.0.1",
"isbn3": "^1.2.3",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"liquid-args": "^1.0.0",
"npm-run-all": "^4.1.5",
"ordinal": "^1.0.3",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"prop-types": "^15.8.1",
"react-dom": "^18.3.1",
"rehype-autolink-headings": "^7.0.0",
"rehype-format": "^5.0.1",
"rehype-raw": "^7.0.0",
"remark-sectionize": "^2.1.0",
"sharp": "^0.33.2",
"slug": "^10.0.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"ucd-full": "^16.0.0"
}
}