-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 865 Bytes
/
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
{
"name": "jordans-eleventy-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx @11ty/eleventy --serve & npx tailwindcss -i styles/tailwind.css -c ./tailwind.config.js -o _site/css/style.css --minify --watch",
"build": "ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i styles/tailwind.css -c ./tailwind.config.js -o _site/css/style.css --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"handlebars": "^4.7.7",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^6.0.1",
"moment": "^2.29.1",
"tailwindcss": "^3.0.22"
},
"dependencies": {
"autoprefixer": "^10.1.0",
"cssnano": "^5.0.17",
"postcss-cli": "^8.3.1"
}
}