Files
component-party/package.json
Mathieu Schimmerling be52cbcbfc refactor: migrate from astro to svelte + vite to improve performance (#131)
* add highlighter
* add playground url
* add markdown support and notification center
* fix multiple md files
* add meta description with framework list
* fix: framework id loop index
* store frameworkIdsSelected in locale storage
* add generateFrameworkContent vite plugin
* add missing snippet case
* add content generate cache
* add angular component highlighter
* improve content generator organization
* add format and linter
* add git hooks
* add default frameworks
2023-01-03 01:36:47 +01:00

84 lines
2.5 KiB
JSON

{
"name": "component-party2",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@7.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --ignore-path .gitignore --plugin-search-dir=. --write .",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. . --check",
"build:content": "node scripts/generateContent.js",
"build:progress": "node scripts/generateReadMeProgress.js",
"prepare": "husky install"
},
"dependencies": {
"@veljs/svelte": "^0.1.8",
"classnames": "^2.3.2",
"heroiconsvelte": "^0.1.5"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^15.1.0",
"@angular-eslint/eslint-plugin-template": "^15.1.0",
"@angular-eslint/template-parser": "^15.1.0",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@matschik/lz-string": "^0.0.2",
"@stefanprobst/remark-shiki": "^2.2.0",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tailwindcss/typography": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"autoprefixer": "^10.4.13",
"codesandbox": "^2.2.3",
"eslint": "^8.31.0",
"eslint-plugin-ember": "^11.4.0",
"eslint-plugin-lit": "^1.7.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qwik": "^0.16.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-solid": "^0.9.1",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-vue": "^9.8.0",
"esm": "^3.2.25",
"folder-hash": "^4.0.2",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"lodash.kebabcase": "^4.1.1",
"micache": "^2.4.1",
"pkg-dir": "^7.0.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"react": "^18.2.0",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"shiki": "^0.12.1",
"svelte": "^3.55.0",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"unified": "^10.1.2",
"vite": "^4.0.3",
"vite-plugin-html": "^3.2.0"
},
"overrides": {
"@stefanprobst/remark-shiki": {
"shiki": "0.12.1"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,svelte}": [
"prettier --write",
"eslint --cache --fix"
]
}
}