forked from baptiste-roullin/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.3 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "tout-ce-qui-bouge",
"version": "0.2.0",
"scripts": {
"dev:webpack": "webpack --watch --mode development",
"dev:eleventy": "npx @11ty/eleventy --incremental --serve --quiet",
"debug:eleventy": "DEBUG=EleventyCacheAssets* npx @11ty/eleventy --incremental --quiet",
"dev:postcss": "postcss src/assets/css/main.css -o dist/assets/css/main.css --watch",
"dev": "npm-run-all --parallel dev:* --print-label",
"build:webpack": "webpack --mode production",
"build:postcss": "cross-env NODE_ENV=production postcss --verbose src/assets/css/main.css -o dist/assets/css/main.css",
"build:eleventy": "cross-env NODE_ENV=production npx @11ty/eleventy --incremental",
"build": "run-s build:* --print-label"
},
"devDependencies": {
"@11ty/eleventy": "2.0.0-canary.11",
"@11ty/eleventy-fetch": "3.0.0",
"@11ty/eleventy-img": "2.0.1 ",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "github:baptiste-roullin/eleventy-plugin-rss",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.13.15",
"@sindresorhus/slugify": "1.1.2",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.0",
"@types/elasticlunr": "^0.9.2",
"@types/luxon": "^2.0.9",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.4",
"@types/node": "^17.0.9",
"@types/nunjucks": "^3.1.5",
"@types/remove-markdown": "^0.3.1",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"child_process": "^1.0.2",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.0.15",
"d3-color": "^2.0.0",
"dotenv": "^16.0.0",
"eleventy-plugin-embed-everything": "^1.14",
"ffmpeg-static": "^4.4.0",
"full-icu": "^1.3.1",
"js-yaml": "^4.1.0",
"linkedom": "^0.14.7",
"luxon": "^2.0.9",
"markdown-it": "^12.3.1",
"markdown-it-anchor": "^8.1.2",
"markdown-it-attrs": "^4.1.3",
"markdown-it-blockquote-cite": "github:baptiste-roullin/markdown-it-blockquote-cite",
"markdown-it-footnote": "^3.0.2",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-image-figures": "^2.0.0",
"npm-run-all": "^4.1.5",
"p-map": "^4.0.0",
"postcss": "^8.1.10",
"postcss-cli": "^9.1.0",
"postcss-hash": "^3.0.0",
"postcss-import": "^14.0.1",
"random-seed": "^0.3.0",
"remove-markdown": "^0.5.0",
"rimraf": "^3.0.2",
"simple-nunjucks-loader": "^3.1.0",
"style-loader": "^3.3.1",
"tailwindcss-textshadow": "^2.1.3",
"ts-loader": "^9.2.5",
"ts-node": "^10.1.0",
"tslib": "^2.3.1",
"webpack": "^5.72.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-cli": "^4.6.0",
"zotero-api-client": "^0.39.0"
},
"optionalDependencies": {
"canvas": "^2.8.0"
},
"dependencies": {
"css": "^3.0.0",
"elasticlunr": "github:weixsong/elasticlunr.js#v0.9.6",
"lodash.clonedeep": "^4.5.0",
"markdown-it-bracketed-spans": "^1.0.1",
"photoswipe": "^5.2.3",
"sharp": "^0.30.3",
"tailwind": "^4.0.0",
"text-metrics": "^3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
]
}