-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.41 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@sourceloop/root",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"postinstall": "npx patch-package",
"afterinstall": "npx patch-package && allow-scripts run && npm run build --workspaces --if-present",
"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": "^19.8.1",
"@commitlint/config-conventional": "^16.2.1",
"@lavamoat/preinstall-always-fail": "^2.1.1",
"commitizen": "^4.2.5",
"custom-sf-changelog": "file:packages/custom-sf-changelog",
"cz-conventional-changelog": "^3.3.0",
"cz-format-extension": "1.5.1",
"husky": "^7.0.4",
"lerna": "^9.0.5",
"typedoc": "0.23.23",
"typedoc-plugin-markdown": "3.14.0"
},
"config": {
"commitizen": {
"path": "cz-format-extension"
}
},
"overrides": {
"semver": "^7.5.4",
"multer": "^2.0.2",
"tough-cookie": "^4.1.3",
"@node-saml/node-saml": "^5.1.0",
"@loopback/cli": {
"package-json": {
"got": "^11.8.6"
}
},
"postman-request": {
"form-data": "4.0.4",
"qs": "^6.14.1"
},
"widdershins": {
"markdown-it": "^12.3.2",
"swagger2openapi": "^7.0.8",
"yargs": "^17.4.1",
"form-data": "4.0.4"
},
"httpsnippet": {
"form-data": "4.0.4"
},
"oidc-provider": {
"@koa/cors": "^5.0.0"
},
"loopback4-notifications": {
"twilio": {
"axios": "^1.12.2"
}
},
"read-package-json": {
"glob": "^10.5.0"
},
"fast-xml-parser": "^5.3.6"
},
"dependencies": {
"@lavamoat/allow-scripts": "^3.4.1",
"bcrypt": "^5.1.1",
"handlebars": "^4.7.8",
"patch-package": "^8.0.0",
"sqlite3": "^5.1.7"
},
"workspaces": [
"packages/core/",
"packages/cli/",
"packages/cache/",
"packages/feature-toggle/",
"packages/file-utils/",
"packages/custom-sf-changelog/",
"services/*",
"sandbox/*"
],
"lavamoat": {
"allowScripts": {
"$root$": false,
"@lavamoat/preinstall-always-fail": false,
"lerna>nx": false,
"lerna>nx>@parcel/watcher": false,
"bcrypt": true,
"sqlite3": true
}
}
}