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 1
/
package.json
53 lines (53 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
50
51
52
53
{
"name": "eleventy_vite_starter",
"description": "An Eleventy/Vite starter set based on the home repository for https://www.brycewray.com",
"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",
"@vitejs/plugin-legacy": "^1.6.2",
"autoprefixer": "^10.3.7",
"browser-sync": "^2.27.5",
"eleventy-plugin-error-overlay": "^0.1.2",
"eleventy-plugin-svg-contents": "^0.7.0",
"glob": "^7.2.0",
"glob-all": "^3.2.1",
"html-minifier": "^4.0.0",
"http-proxy-middleware": "^2.0.1",
"luxon": "^2.0.2",
"markdown-it": "^12.2.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.2.1",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"postcss-csso": "^5.0.1",
"postcss-import": "^14.0.2",
"postcss-nesting": "^8.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.17",
"vite": "^2.6.7"
}
}