Files
component-party/package.json
Mathieu Schimmerling 604e9ee744 Add Solid REPL (#81)
* feat(repl): improve repl by fmw, add solid repl

* fix: fix lz-string pkg esm

* feat(repl): sort files for repl generator link

* feat(repl): add css file support for solid repl
2022-05-20 04:00:42 +02:00

83 lines
2.5 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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --ignore-path .gitignore --plugin-search-dir=. . --check",
"prettier:fix": "pnpm run prettier -- --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": "^13.2.1",
"@angular-eslint/eslint-plugin-template": "^13.2.1",
"@angular-eslint/template-parser": "^13.2.1",
"@angular/core": "^13.3.3",
"@angular/router": "^13.3.3",
"@astrojs/svelte": "^0.1.2",
"@astrojs/tailwind": "^0.1.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@matschik/lz-string": "^0.0.2",
"@tailwindcss/typography": "^0.5.2",
"@types/mdast": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"astro": "^1.0.0-beta.12",
"autoprefixer": "^10.4.4",
"codesandbox": "^2.2.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ember": "^10.6.1",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-solid": "^0.4.7",
"eslint-plugin-svelte3": "^3.4.1",
"eslint-plugin-vue": "^8.6.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"lodash.kebabcase": "^4.1.1",
"micache": "^2.4.1",
"pkg-dir": "^6.0.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"remark": "^14.0.2",
"shiki": "^0.10.1",
"svelte": "^3.47.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vite-plugin-full-reload": "^1.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,svelte}": [
"prettier --write",
"eslint --cache --fix"
]
},
"dependencies": {
"alpinejs": "^3.10.2"
}
}