-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 853 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "starter-tailwindcss-html",
"version": "1.0.0",
"description": "This project is intended to be a starter codebase for working with TailwindCSS and HTML.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"init": "mkdir -p ./src && npx tailwindcss -o ./src/style.css",
"build": "mkdir -p ./dist && cp ./src/index.html ./dist/index.html && purgecss --css ./src/tailwind.css --content ./src/index.html --output ./dist/style.css",
"build:minify": "mkdir -p ./dist && cp ./src/index.html ./dist/index.html && npx postcss ./src/tailwind.css > ./dist/style.css"
},
"author": "Abu Hurairah <[email protected]>",
"license": "ISC",
"dependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"cssnano": "^5.0.6",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1"
}
}