-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.96 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
{
"name": "fruits-express",
"description": "Simple data-oriented & multi-language starter with Eleventy & TailwindCSS",
"keywords": [
"eleventy",
"11ty",
"starter",
"tailwindcss",
"fontsource"
],
"version": "2.4.1",
"license": "MIT",
"author": "Ben Michaud <[email protected]>",
"scripts": {
"start": "NODE_ENV=development concurrently -n dev: -c green,cyan,yellow npm:dev:* --kill-others",
"prestart": "rm -rf ./public",
"dev:11ty": "eleventy --serve --quiet",
"dev:css": "tailwind --input ./site/_theme/css/styles.css --output ./public/css/styles.min.css --postcss --watch",
"dev:js": "esbuild js/scripts.min=site/_theme/js/scripts.js --outdir=public --bundle --watch",
"build": "NODE_ENV=production concurrently -n build: -c green,cyan,yellow npm:build:* --kill-others-on-fail",
"prebuild": "rm -rf ./build",
"build:11ty": "eleventy --output build --quiet --pathprefix $PATHPREFIX",
"build:css": "tailwind --input ./site/_theme/css/styles.css --output ./build/css/styles.min.css --postcss --minify",
"build:js": "esbuild js/scripts.min=site/_theme/js/scripts.js --outdir=build --bundle --minify",
"prod-preview": "npx http-server build -o --gzip --brotli",
"upload-cloudinary": "qcu -p $npm_package_name 'site/static:images/*.jpg' 'site/_data:images/**/*'"
},
"devDependencies": {
"@11ty/eleventy": "2.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"concurrently": "^7.6.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"esbuild": "^0.17.11",
"fast-glob": "^3.2.12",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"quick-cloudinary-uploader": "^1.1.1",
"string-kit": "^0.17.8",
"tailwindcss": "^3.2.7"
},
"dependencies": {
"@fontsource/sarabun": "^4.5.9"
}
}