-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
50 lines (50 loc) · 2.03 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
{
"description": "Source of simplyexplained.com, a static website generated by Eleventy.",
"name": "simplyexplained.com",
"homepage": "https://github.com/Savjee/savjee.be",
"bugs": "https://github.com/Savjee/savjee.be/issues/",
"author": {
"name": "Xavier Decuyper",
"email": "[email protected]",
"url": "https://simplyexplained.com"
},
"private": true,
"scripts": {
"start": "npm run start:eleventy & npm run start:webpack & npm run start:tailwind",
"start:eleventy": "eleventy --serve --quiet",
"start:webpack": "esbuild src/site/_assets/js/all.js --bundle --outfile=_site/assets/main.js --watch",
"start:tailwind": "npm run build:tailwind -- --watch",
"start:cf": "npx wrangler pages dev -- npm run start",
"build": "npm run lint:markdown && npm run build:tailwind && npm run build:webpack && npm run build:eleventy && npm run lint:markdown",
"build:eleventy": "ELEVENTY_PRODUCTION=true eleventy",
"build:webpack": "esbuild src/site/_assets/js/all.js --bundle --outfile=_site/assets/main.js",
"build:images": "npx ts-node src/build/image_pipeline.ts",
"build:tailwind": "npx tailwindcss -i src/site/_assets/css/main.css -o _site/assets/css/main.css",
"lint": "npm run lint:markdown",
"lint:markdown": "npx ts-node src/build/lint-markdown.ts"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/sharp": "^0.32.0",
"eleventy-plugin-bibtex": "^0.1.1",
"esbuild": "0.22.0",
"fast-glob": "^3.2.12",
"image-size": "^1.0.0",
"instant.page": "^5.2.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-table-of-contents": "^0.6.0",
"prism-themes": "^1.9.0",
"sharp": "^0.33.4",
"tailwindcss": "^3.3.1",
"tailwindcss-base-font-size": "^1.0.0",
"ts-node": "^10.4.0"
},
"dependencies": {
"eleventy-plugin-toc": "^1.1.5"
}
}