-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.85 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
{
"name": "pythonexpert",
"version": "8.0.0",
"description": "A source code for www.pythonexpert.dev",
"scripts": {
"build": "NODE_ENV=production npx @11ty/eleventy && NODE_ENV=production tailwindcss -i public/css/tailwind.input.css -o public/css/tailwind.css",
"build-ghpages": "npx @11ty/eleventy --pathprefix=/eleventy-base-blog/",
"start": "npm-run-all --parallel serve tw:watch",
"serve": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"tw:watch": "tailwindcss -i public/css/tailwind.input.css -o public/css/tailwind.css --watch",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"s3:sync": "aws s3 sync _site/ s3://pythonexpert-web/static --delete",
"cloudfront:clearCache": "aws cloudfront create-invalidation --distribution-id E1WZICBZJ43601 --path \"/*\"",
"deploy": "rm -rf _site && npm run build && npm run s3:sync && npm run cloudfront:clearCache"
},
"author": {
"name": "Data Advantage Co.,Ltd.",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@alpinejs/intersect": "^3.14.1",
"@alpinejs/persist": "^3.14.7",
"@kevingimbel/eleventy-plugin-mermaid": "^2.2.1",
"@tailwindcss/typography": "^0.5.13",
"alpinejs": "^3.14.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"hotkeys-js": "^3.13.7",
"image-size": "^1.1.1",
"luxon": "^3.3.0",
"markdown-it-anchor": "^8.6.7",
"mermaid": "^11.4.1",
"monaco-editor": "^0.52.2",
"npm-run-all": "^4.1.5",
"tailwind-highlightjs": "^2.0.1",
"typed.js": "^2.1.0"
}
}