-
-
Notifications
You must be signed in to change notification settings - Fork 456
/
package.json
50 lines (50 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"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",
"build:cli":"lerna exec npm run build --scope=dooringx-cli",
"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.3"
},
"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 ."
]
},
"dependencies": {},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1",
"**/typescript": "^4.1.3"
}
}