Newer
Older
{
"name": "@example/with-tailwindcss",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",

Yassine Doghri
committed
"lint": "eslint --ext js,ts src",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint --fix \"src/**/*.css\"",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",

Yassine Doghri
committed
"commit": "cz",
"prepare": "husky install"
},
"devDependencies": {
"@astrojs/partytown": "^0.1.2",
"@astrojs/sitemap": "^0.1.0",
"@astrojs/tailwind": "^0.2.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@tailwindcss/typography": "^0.5.2",

Yassine Doghri
committed
"astro": "1.0.0-beta.12",
"astro-xelement": "^3.2.0",
"autoprefixer": "^10.4.4",

Yassine Doghri
committed
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",

Yassine Doghri
committed
"lint-staged": "^12.3.8",

Yassine Doghri
committed
"prettier-plugin-astro": "^0.1.0-next.4",
"stylelint": "^14.7.0",

Yassine Doghri
committed

Yassine Doghri
committed

Yassine Doghri
committed
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.0.24"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"astro-icon": "^0.7.1",
"astro-seo": "^0.5.0"

Yassine Doghri
committed
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md,.astro}": "prettier --write"