-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.91 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
{
"name": "OutsideYourExpectations",
"version": "4.0.0",
"description": "Yet Another Tailwind Alpine UTC Starter",
"scripts": {
"clean": "del _site",
"build": "NODE_ENV=production concurrently \"npm:build-*\" && node hash && ELEVENTY_ENV=production eleventy",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"watch": "npx @11ty/eleventy --watch",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"watch-css": "npx tailwindcss -i ./assets/css/styles.css -o ./_site/css/styles.css -w",
"watch-js": "npx esbuild ./assets/js/scripts.js --outfile=./_site/js/scripts.js --bundle --target=es2018 --watch",
"build-css": "npx tailwindcss -i ./assets/css/styles.css -o ./_site/css/styles.css --minify",
"build-js": "npx esbuild ./assets/js/scripts.js --outfile=./_site/js/scripts.js --bundle --target=es2018 --minify",
"debug": "DEBUG=* npx @11ty/eleventy"
},
"keywords": [
"eleventy",
"starter",
"TailwindCSS",
"Alpine.js"
],
"author": "Bernardo Martinez <[email protected]>",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@11ty/eleventy-upgrade-help": "^1.0.1",
"alpinejs": "^3.0.6",
"autoprefixer": "^10.4.0",
"concurrently": "^7.0.0",
"del-cli": "^4.0.0",
"esbuild": "^0.14.0",
"html-minifier": "^4.0.0",
"luxon": "^2.3.1",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"md5": "^2.3.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7"
},
"dependencies": {
"aos": "^2.3.4",
"blazy": "^1.8.2",
"confetti-js": "^0.0.18"
}
}