-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.6 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": "v60-eleventy",
"version": "2.0.0",
"description": "A clean and simple Eleventy 2 Starter Kit with Vite",
"author": "Aris Ripandi <aris@duck.com>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://riipandi@github.com/riipandi/v60.git"
},
"bugs": {
"url": "https://github.com/riipandi/v60/issues"
},
"homepage": "https://github.com/riipandi/v60#readme",
"scripts": {
"build": "pnpm run cleanup && eleventy",
"dev": "eleventy --serve --port 3000 --incremental",
"start": "eleventy --serve",
"watch": "eleventy --watch",
"bench": "DEBUG=Eleventy:Benchmark* eleventy",
"preview": "serve -l 3000 _site",
"docker:build": "docker build -f Dockerfile . -t $npm_package_name:latest -t $npm_package_name:$npm_package_version",
"docker:run": "docker run --add-host=localhost:host-gateway --rm -it -p 3000:80 --env-file .env --name $npm_package_name $npm_package_name:$npm_package_version",
"docker:shell": "docker run --add-host=localhost:host-gateway --rm -it -p 3000:80 --env-file .env --entrypoint /bin/sh $npm_package_name:$npm_package_version",
"docker:images": "docker image list --filter reference=$npm_package_name",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"cleanup": "pnpm dlx rimraf _site _tmp .cache",
"check": "biome check . --write",
"format": "biome format . --write",
"lint": "biome lint . --write"
},
"dependencies": {
"alpinejs": "^3.14.1"
},
"devDependencies": {
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "^5.0.0-alpha.1",
"@11ty/eleventy": "^3.0.0",
"@biomejs/biome": "1.9.3",
"@egoist/tailwindcss-icons": "^1.8.1",
"@iconify-json/lucide": "^1.2.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"html-minifier": "^4.0.0",
"luxon": "^3.5.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it": "^14.1.0",
"npm-check-updates": "^17.1.3",
"postcss": "^8.4.47",
"serve": "^14.2.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss": "^3.4.13",
"vite": "^5.4.1"
},
"browserslist": ["> 0.5%", "not IE 11"],
"packageManager": "pnpm@9.11.0"
}