Files
open-anylink-web/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2024-08-19 22:51:18 +08:00
{
"name": "anyim-web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"prepare": "husky install",
2024-09-12 21:35:37 +08:00
"lint-staged": "lint-staged",
"proto": "npx pbjs -t static-module --es6 -w es6 -o src/proto/msg.js src/proto/msg.proto"
2024-08-19 22:51:18 +08:00
},
"dependencies": {
2024-08-21 10:37:56 +08:00
"@element-plus/icons-vue": "^2.3.1",
"@vueup/vue-quill": "^1.2.0",
2024-08-20 17:02:51 +08:00
"axios": "^1.7.4",
2024-08-22 22:38:04 +08:00
"crypto-js": "^4.2.0",
2024-08-20 17:02:51 +08:00
"element-plus": "^2.8.0",
"lodash": "^4.17.21",
2024-08-19 22:51:18 +08:00
"pinia": "^2.1.7",
2024-09-12 21:35:37 +08:00
"protobufjs": "^7.4.0",
2024-08-22 22:38:04 +08:00
"uuid": "^10.0.0",
2024-08-19 22:51:18 +08:00
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.9",
2024-08-20 17:02:51 +08:00
"pinia-plugin-persistedstate": "^3.2.1",
2024-08-19 22:51:18 +08:00
"prettier": "^3.2.5",
2024-09-12 21:35:37 +08:00
"protobufjs-cli": "^1.1.3",
2024-08-21 10:37:56 +08:00
"sass": "^1.77.8",
2024-10-23 15:33:58 +08:00
"vite": "^5.3.1",
"vite-svg-loader": "^5.1.0"
2024-08-19 22:51:18 +08:00
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
]
}
}