This repository has been archived by the owner on Jun 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "eleventy-vite",
"version": "1.0.0",
"description": "Based on eleventy-on-vite by Fotis Papadogeorgopoulos",
"private": "true",
"scripts": {
"clean": "rimraf _site",
"start": "TAILWIND_MODE=watch NODE_ENV=development npm-run-all clean --parallel dev:*",
"dev:eleventy": "ELEVENTY_ENV=development npx @11ty/eleventy --incremental --quiet --serve",
"dev:vite": "vite",
"build": "NODE_ENV=production npm-run-all clean prod:vite prod:eleventy",
"prod:eleventy": "ELEVENTY_ENV=production npx @11ty/eleventy --output=./_site",
"prod:vite": "NODE_ENV=production vite build",
"testbuild:bsync": "browser-sync start --server ./_site -w --no-open --no-notify --no-ghost-mode --port 5000 --ui-port 5001",
"testbuild": "NODE_ENV=production npm run build && npm run testbuild:bsync"
},
"keywords": [],
"author": "",
"license": "MIT",
"browserslist": [
"last 4 versions",
"> 1%",
"maintained node versions"
],
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^0.10.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@vitejs/plugin-legacy": "^1.5.1",
"autoprefixer": "^10.3.1",
"browser-sync": "^2.27.5",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eleventy-plugin-error-overlay": "^0.1.2",
"eleventy-plugin-svg-contents": "^0.7.0",
"eleventy-rss-helper": "^1.2.1",
"glob": "^7.1.7",
"glob-all": "^3.2.1",
"html-minifier": "^4.0.0",
"luxon": "^2.0.2",
"markdown-it-anchor": "^8.1.2",
"markdown-it-attrs": "^4.0.0",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-footnote": "^3.0.3",
"markdown-it-link-attributes": "^3.0.0",
"markdown-it-prism": "^2.1.8",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-csso": "^5.0.1",
"postcss-import": "^14.0.2",
"postcss-nesting": "^8.0.1",
"rimraf": "^3.0.2",
"rss": "^1.2.2",
"tailwindcss": "^2.2.7",
"vite": "^2.5.0"
}
}