-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "perro-dinero",
"version": "1.0.0",
"description": "Perro Dinero - Finanzas Personales",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "rimraf _site",
"serve:webpack": "webpack --mode development --watch",
"serve:eleventy": "eleventy --serve --incremental",
"serve": "npm-run-all clean --parallel serve:*",
"dev": "npm-run-all clean --parallel serve:*",
"build:webpack": "webpack --mode production",
"build:eleventy": "eleventy",
"build": "run-s clean build:*",
"debug": "DEBUG=* eleventy",
"convert-gifs": "for i in img/posts/*.gif; do ffmpeg -i \"$i\" -b:v 0 -crf 25 -vcodec libx264 -pix_fmt yuv420p \"${i%.*}.mp4\" -y; ffmpeg -i \"$i\" -c vp9 -b:v 0 -crf 41 \"${i%.*}.webm\" -y; done",
"update-portfolio": "./scripts/updatePortfolio.js"
},
"repository": {
"type": "git",
"url": "git://github.com/davidojedalopez/perro-dinero.git"
},
"license": "MIT",
"author": {
"name": "David Ojeda",
"email": "[email protected]",
"url": "https://davidojeda.dev"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "4.0.2",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "1.2.0",
"@netlify/plugin-lighthouse": "6.0.0",
"@tailwindcss/forms": "^0.5.0",
"autoprefixer": "10.4.5",
"css-loader": "6.7.3",
"dotenv": "^8.6.0",
"eleventy-plugin-reading-time": "0.0.1",
"flat-cache": "^2.0.1",
"gray-matter": "^4.0.2",
"luxon": "^1.25.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-toc-done-right": "^4.2.0",
"mini-css-extract-plugin": "2.7.5",
"netlify-plugin-a11y": "0.0.12",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.13",
"postcss-loader": "^4.1.0",
"rimraf": "^3.0.2",
"rough-notation": "^0.5.1",
"tailwindcss": "^3.3.1",
"update": "^0.7.4",
"webpack": "5.80.0",
"webpack-cli": "^5.0.2",
"workbox-webpack-plugin": "6.5.4"
}
}