forked from kailoon/kailoon.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"name": "11ty-portfolio",
"version": "1.0.0",
"description": "Minimal Poftfolio / blog template built with eleventy & tailwindcss.",
"scripts": {
"serve": "ELEVENTY_ENV=dev npx eleventy --serve & tailwindcss -i ./src/css/tailwind.css -o ./_site/css/styles.css --watch",
"start": "npm run serve",
"build": "ELEVENTY_ENV=dev npx eleventy & npm run build:prod",
"build:prod": "ELEVENTY_ENV=prod npx eleventy & tailwindcss -i ./src/css/tailwind.css -o ./_site/css/styles.css --minify"
},
"keywords": [
"11ty",
"tailwindcss",
"eleventy"
],
"author": "Mohammad Sharifi",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"luxon": "^2.5.2",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.6.6",
"markdown-it-link-attributes": "^4.0.1",
"nunjucks": "^3.2.3",
"tailwindcss": "^3.2.4"
}
}