Files
dooring/package.json

54 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2021-07-09 01:41:03 +08:00
{
"name": "root",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna exec npm run start --scope=dooringx-lib",
2021-11-25 12:15:19 +08:00
"start:example": "lerna exec npm run start --scope=dooringx-example",
"start:doc": "lerna exec npm run start --scope=dooringx-dumi-doc",
2021-07-09 01:41:03 +08:00
"build": "lerna exec npm run build --scope=dooringx-lib",
2021-11-24 12:50:19 +08:00
"deploy": "lerna exec npm run docs:build --scope=dooringx-dumi-doc",
2023-05-04 10:58:22 +08:00
"build:cli": "lerna exec npm run build --scope=dooringx-cli",
2021-07-20 19:28:51 +08:00
"pub": "node ./script/publish.js",
2021-11-25 12:15:19 +08:00
"changelog": "node ./script/changelog.js",
"translate": "node ./script/translate.js",
2022-01-07 09:35:34 +08:00
"translateText": "node ./script/translateText.js"
2021-07-09 01:41:03 +08:00
},
"private": true,
"devDependencies": {
2021-11-25 12:15:19 +08:00
"@types/md5": "^2.3.1",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
2021-07-09 01:41:03 +08:00
"husky": "4.3.0",
2021-11-25 12:15:19 +08:00
"lerna": "^3.22.1",
2021-07-09 01:41:03 +08:00
"lint-staged": "^11.0.0",
2021-11-25 12:15:19 +08:00
"md5": "^2.3.0",
2021-07-09 01:41:03 +08:00
"prettier": "^2.2.0",
2021-11-25 12:15:19 +08:00
"rimraf": "^3.0.2",
"tslib": "^2.1.0",
2022-01-21 13:43:57 +08:00
"typescript": "^4.1.3"
2021-07-09 01:41:03 +08:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": [
2021-11-24 12:50:19 +08:00
"npx prettier --write ./packages/dooringx-dumi-doc/docs ./packages/dooringx-lib/src",
2021-07-09 01:41:03 +08:00
"git add ."
]
2022-01-07 09:35:34 +08:00
},
2023-05-04 10:58:22 +08:00
"dependencies": {
2023-05-04 19:26:58 +08:00
"@ant-design/cssinjs": "^1.9.1",
2023-05-04 10:58:22 +08:00
"dooringx-lib": "^1.0.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1",
"**/typescript": "^4.1.3"
}
2021-07-09 01:41:03 +08:00
}