-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
60 lines (60 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@sourceloop/root",
"private": false,
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"postinstall": "npx patch-package",
"clean-deps": "lerna clean --yes && lerna exec --no-private \"npm install --ignore-scripts --package-lock-only --no-audit\"",
"export-typedocs": "npx tsc export-typedocs.ts && node export-typedocs",
"clean": "npm run clean --workspaces --if-present"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.5",
"custom-sf-changelog": "file:packages/custom-sf-changelog",
"cz-conventional-changelog": "^3.3.0",
"cz-format-extension": "^1.5.0",
"husky": "^7.0.4",
"lerna": "7.2.0",
"typedoc": "0.23.23",
"typedoc-plugin-markdown": "3.14.0"
},
"config": {
"commitizen": {
"path": "cz-format-extension"
}
},
"overrides": {
"semver": "^7.5.4",
"tough-cookie": "^4.1.3",
"@loopback/cli": {
"package-json": {
"got": "^11.8.6"
}
},
"widdershins": {
"markdown-it": "^12.3.2",
"swagger2openapi": "^7.0.8",
"yargs": "^17.4.1"
},
"oidc-provider": {
"@koa/cors": "^5.0.0"
}
},
"dependencies": {
"handlebars": "^4.7.8",
"patch-package": "^8.0.0"
},
"workspaces": [
"packages/core/",
"packages/cli/",
"packages/cache/",
"packages/feature-toggle/",
"packages/file-utils/",
"packages/custom-sf-changelog/",
"services/*",
"sandbox/*"
]
}