123456789101112131415161718192021222324252627 |
- {
- "name": "uniAppXCX",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "prepare": "husky install",
- "prettier": "prettier --config prettier.config.js --write \"**/*.{ts,js,vue,css,scss,less,html}\""
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "express": "^4.18.2",
- "husky": "^8.0.3",
- "lint-staged": "^15.1.0",
- "prettier": "^3.1.0",
- "uuid": "^9.0.1",
- "ws": "^8.14.2"
- },
- "lint-staged": {
- "**/*.{js,vue,css,scss,less,html}": [
- "npm run prettier",
- "git add"
- ]
- }
- }
|