Skip to content

Commit

Permalink
Merge branch 'feat/storybook' of github.com:shuriken-ui/tailwind into…
Browse files Browse the repository at this point in the history
… feat/storybook
  • Loading branch information
driss-chelouati committed Sep 1, 2023
2 parents 31b04db + 52a1b93 commit 01a1d7f
Show file tree
Hide file tree
Showing 9 changed files with 656 additions and 19 deletions.
30 changes: 18 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
"lint:eslint:fix": "eslint -c .eslintrc.cjs --fix --ext .vue,.ts .",
"test": "run-p test:*",
"test:lint": "run-s lint:eslint lint:prettier",
"test:vitest": "vitest",
"coverage": "vitest run --coverage",
"prepack": "pnpm run build",
"release": "run-s test release:*",
"release:standard-version": "standard-version",
Expand All @@ -76,44 +78,48 @@
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@open-wc/lit-helpers": "0.6.0",
"@storybook/addon-essentials": "^7.3.1",
"@storybook/addon-links": "^7.3.1",
"@storybook/addon-styling": "^1.3.6",
"@storybook/blocks": "^7.3.1",
"@storybook/web-components": "^7.3.1",
"@storybook/web-components-vite": "^7.3.1",
"autoprefixer": "^10.4.15",
"eslint-plugin-storybook": "^0.6.13",
"lit": "^2.8.0",
"postcss": "^8.4.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.3.1",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"autoprefixer": "^10.4.15",
"commitlint": "^17.7.1",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-tailwindcss": "3.13.0",
"eslint-plugin-unicorn": "^48.0.1",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"lit": "^2.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-git-hooks": "^2.9.0",
"standard-version": "^9.5.0",
"storybook": "^7.3.1",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
"unbuild": "^2.0.0",
"vitest": "^0.34.3",
"vitest-axe": "1.0.0-pre.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint -e -V "
},
"lint-staged": {
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
"prettier --parser=typescript --write",
"eslint --fix"
]
}
}
Loading

0 comments on commit 01a1d7f

Please sign in to comment.