Files
MyBlog-Next/package.json
T
2022-10-16 21:37:00 +06:30

61 lines
1.5 KiB
JSON

{
"name": "astro-paper",
"version": "1.0.1",
"private": false,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"cz": "cz",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/rss": "^1.0.1",
"@types/react": "^18.0.20",
"astro": "^1.1.7",
"fuse.js": "^6.6.2",
"github-slugger": "^1.4.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^8.0.1"
},
"devDependencies": {
"@astrojs/react": "^1.1.3",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^1.0.0",
"@tailwindcss/typography": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"eslint",
"prettier --write"
]
}
}