Files
ipfs-blog/package.json

91 lines
2.7 KiB
JSON

{
"name": "ipfs-blog",
"version": "1.0.0",
"description": "ipfs blog",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "vuepress dev src",
"build": "vuepress build src && npm run postbuild",
"postbuild": "./scripts/latest-posts.js",
"lint": "prettier --write \"**/*.{json,yaml,md}\" && run-p lint:**",
"lint:eslint": "eslint --cache \"**/*.{js,vue}\" --fix",
"lint:styles": "stylelint \"**/*.css\" \"src/.vuepress/**/*.css\" --fix"
},
"keywords": [],
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@vuepress/plugin-blog": "^1.9.4",
"@vuepress/plugin-html-redirect": "^0.1.2",
"@vuepress/plugin-last-updated": "^1.8.2",
"autoprefixer": "^9.8.6",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.9.0",
"gray-matter": "^4.0.3",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-video": "^0.6.3",
"npm-run-all": "^4.1.5",
"p-map": "^4.0.0",
"postcss": "^7.0.35",
"prettier": "^2.2.1",
"slug": "^4.0.4",
"standard-version": "^9.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"svg-sprite-loader": "^6.0.6",
"svgo": "^2.3.0",
"svgo-loader": "^3.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.0",
"tailwindcss-line-clamp": "^1.0.5",
"tailwindcss-touch": "^1.0.1",
"vue": "^2.6.12",
"vuepress": "^1.8.2",
"vuepress-plugin-canonical": "^1.0.0",
"vuepress-plugin-chunkload-redirect": "^1.0.3",
"vuepress-plugin-clean-urls": "^1.1.2",
"vuepress-plugin-ipfs": "^1.0.2",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-seo": "^0.1.4",
"xml2js": "^0.4.23"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yaml,md}": "prettier --write",
"*.{js,vue}": "eslint --cache --fix",
"*.{css,styl}": "stylelint --fix"
},
"dependencies": {
"dayjs": "^1.10.4",
"markdown-it-image-lazy-loading": "^1.1.0",
"markdown-it-imsize": "^2.0.1",
"tailwindcss-typography": "^3.1.0",
"v-lazy-image": "^1.4.0",
"v-scroll-lock": "^1.3.1",
"vue-advanced-cropper": "^1.5.1",
"vue-mq": "^1.0.1",
"vue-multiselect": "^2.1.6",
"vue-social-sharing": "^3.0.7",
"vuepress-plugin-img-lazy": "^1.0.4",
"vuex": "^3.6.2"
}
}