mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
* feat: upgrade Astro to 1.0 and other dependencies * chore: run prettier, fix lint on solid AnswerButton
88 lines
2.7 KiB
JSON
88 lines
2.7 KiB
JSON
{
|
|
"name": "component-party",
|
|
"version": "1.0.0",
|
|
"description": "Web component JS frameworks overview by their syntax and features",
|
|
"type": "module",
|
|
"packageManager": "pnpm@7.0.0",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"docs:build": "node scripts/progress.js",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"prettier": "prettier --ignore-path .gitignore --plugin-search-dir=. . --check",
|
|
"prettier:fix": "prettier --ignore-path .gitignore --plugin-search-dir=. --write .",
|
|
"format": "pnpm run prettier:fix && pnpm run lint:fix",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/matschik/component-party.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/matschik/component-party/issues"
|
|
},
|
|
"homepage": "https://github.com/matschik/component-party#readme",
|
|
"devDependencies": {
|
|
"@angular-eslint/eslint-plugin": "^14.0.2",
|
|
"@angular-eslint/eslint-plugin-template": "^14.0.2",
|
|
"@angular-eslint/template-parser": "^14.0.2",
|
|
"@angular/core": "^14.1.2",
|
|
"@angular/router": "^14.1.2",
|
|
"@astrojs/markdown-component": "^1.0.1",
|
|
"@astrojs/svelte": "^1.0.0",
|
|
"@astrojs/tailwind": "^1.0.0",
|
|
"@babel/eslint-parser": "^7.18.9",
|
|
"@babel/plugin-proposal-decorators": "^7.18.10",
|
|
"@builder.io/qwik": "0.0.100",
|
|
"@matschik/lz-string": "^0.0.2",
|
|
"@tailwindcss/typography": "^0.5.4",
|
|
"@types/mdast": "^3.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
"@typescript-eslint/parser": "^5.33.0",
|
|
"astro": "^1.0.3",
|
|
"autoprefixer": "^10.4.8",
|
|
"codesandbox": "^2.2.3",
|
|
"eslint": "^8.21.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-ember": "^11.0.5",
|
|
"eslint-plugin-lit": "^1.6.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-qwik": "^0.0.100",
|
|
"eslint-plugin-react": "^7.30.1",
|
|
"eslint-plugin-solid": "^0.7.1",
|
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
"eslint-plugin-vue": "^9.3.0",
|
|
"esm": "^3.2.25",
|
|
"husky": "^8.0.1",
|
|
"lint-staged": "^13.0.3",
|
|
"lodash.kebabcase": "^4.1.1",
|
|
"micache": "^2.4.1",
|
|
"pkg-dir": "^6.0.1",
|
|
"postcss": "^8.4.16",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-astro": "^0.5.0",
|
|
"prettier-plugin-svelte": "^2.7.0",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.2.0",
|
|
"remark": "^14.0.2",
|
|
"shiki": "^0.11.0",
|
|
"svelte": "^3.49.0",
|
|
"tailwindcss": "^3.1.8",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^2.9.15",
|
|
"vite-plugin-full-reload": "^1.0.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,vue,svelte}": [
|
|
"prettier --write",
|
|
"eslint --cache --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"alpinejs": "^3.10.3"
|
|
}
|
|
}
|