Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
package.json 1.11 KB
Copy Edit Raw Blame History
yehuozhili authored 2021-11-25 12:15 . add translate
{
"name": "root",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna exec npm run start --scope=dooringx-lib",
"start:example": "lerna exec npm run start --scope=dooringx-example",
"start:doc": "lerna exec npm run start --scope=dooringx-dumi-doc",
"build": "lerna exec npm run build --scope=dooringx-lib",
"deploy": "lerna exec npm run docs:build --scope=dooringx-dumi-doc",
"pub": "node ./script/publish.js",
"changelog": "node ./script/changelog.js",
"translate": "node ./script/translate.js",
"translateText":"node ./script/translateText.js"
},
"private": true,
"devDependencies": {
"@types/md5": "^2.3.1",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"husky": "4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^11.0.0",
"md5": "^2.3.0",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"tslib": "^2.1.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": [
"npx prettier --write ./packages/dooringx-dumi-doc/docs ./packages/dooringx-lib/src",
"git add ."
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化