forked from jd-antelope/s-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"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/selling-lint-cli && yarn build && cd ../../ && node scripts/package-publish.js",
"publish": "lerna publish",
"docs": "node ./scripts/docs/index.js"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^16.9.6",
"commitlint": "^16.2.1",
"doctrine": "^3.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"handlebars": "^4.7.7",
"husky": "^4.3.8",
"inquirer": "^8.1.5",
"lerna": "^4.0.0",
"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"
}
}