public/package.json
2021-07-10 22:25:31 -04:00

30 lines
856 B
JSON

{
"name": "my-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx @11ty/eleventy --serve & postcss ./tailwind.css --o _site/assets/styles/tailwind.css --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "npx @11ty/eleventy & postcss ./tailwind.css --o _site/assets/styles/tailwind.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": ">=0.11.1",
"@11ty/eleventy-plugin-syntaxhighlight": ">=3.0.4",
"eslint": ">=7.12.1",
"html-minifier": ">=3.5.21"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.4",
"markdown-it-anchor": "^7.0.1",
"postcss-cli": "^8.3.1",
"tailwindcss": ">=2.0.2"
}
}