forked from jd-antelope/s-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "root",
"version": "0.0.3",
"main": "index.js",
"description": "",
"author": "",
"license": "ISC",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"publish:independent": "node scripts/publish.js",
"p": "cd packages/@jd/selling-lint-cli && yarn build && cd ../../../ && node scripts/package-publish.js",
"publish": "lerna publish",
"docs": "node ./scripts/docs/index.js"
},
"devDependencies": {
"@types/node": "^16.9.6",
"doctrine": "^3.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"handlebars": "^4.7.7",
"husky": "^7.0.2",
"inquirer": "^8.1.5",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@docusaurus/theme-search-algolia": "^2.0.0-beta.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,vue}": [
"eslint --fix",
"git add"
]
}
}