加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
江夏 提交于 2023-05-09 21:44 . feat: 去除首页打字效果
{
"private": true,
"scripts": {
"build": "nuxt build --dotenv .env.production",
"dev": "nuxt dev --port 5050 --dotenv .env.development",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint --fix --ext .ts,.js,tsx,.vue .",
"pm2:prod": "pm2 start ecosystem.config.js --env production",
"pm2:dev": "pm2 start ecosystem.config.js --env development",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@iconify/vue": "^3.2.1",
"@kevinmarrec/nuxt-pwa": "^0.17.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@pinia/nuxt": "^0.4.9",
"@tailvue/nuxt": "^0.1.68",
"@types/crypto-js": "^4.1.1",
"@types/js-cookie": "^3.0.2",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.1",
"nuxt": "^3.4.2",
"postcss": "^8.4.16",
"prettier": "^2.8.8",
"sitemap": "^7.1.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.4",
"unplugin-icons": "^0.14.15",
"vconsole": "^3.15.0"
},
"dependencies": {
"copy-to-clipboard": "^3.3.2",
"crypto-js": "^4.1.1",
"csshake": "^1.7.0",
"daisyui": "^2.51.3",
"dayjs": "^1.11.5",
"js-cookie": "^3.0.1",
"jsbarcode": "^3.11.5",
"jsencrypt": "^3.2.1",
"md-editor-v3": "^2.9.0",
"pinia": "^2.0.35",
"vue": "^3.2.47"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
],
"*.{less,css}": [
"prettier --write"
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化