forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 4.94 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
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": "mongodb-compass-monorepo",
"description": "Monorepo that includes Compass and all its dependencies",
"homepage": "https://www.mongodb.com/products/compass",
"author": {
"name": "MongoDB Inc",
"email": "[email protected]"
},
"shortcutFolderName": "MongoDB",
"license": "SSPL",
"scripts": {
"bootstrap": "npm install && lerna run bootstrap --stream",
"bootstrap-ci": "npm ci && lerna run bootstrap",
"precheck": "npm run depcheck && npm run check-logids && npm run check-leafygreen-dependency-usage",
"changed": "node ./scripts/changed.js",
"check": "lerna run check --stream",
"check-changed": "npm run check -- --since origin/HEAD --exclude-dependents",
"precheck-ci": "npm run depcheck && npm run check-logids",
"check-ci": "lerna run check",
"compile-changed": "lerna run compile --stream --since origin/HEAD",
"depalign": "depalign",
"predepcheck": "npm run depalign",
"depcheck": "depcheck",
"check-logids": "node scripts/check-logids.js",
"check-leafygreen-dependency-usage": "node scripts/check-leafygreen-dep-usage.js",
"electron-rebuild": "npm run electron-rebuild --workspace mongodb-compass",
"node-rebuild": "node ./scripts/rebuild.js kerberos keytar interruptor",
"release": "npm run release --workspace mongodb-compass --",
"reformat": "lerna run reformat --stream --no-bail",
"package-compass": "npm run package-compass --workspace=mongodb-compass --",
"package-compass-nocompile": "npm run package-compass-nocompile --workspace=mongodb-compass --",
"prestart": "npm run compile --workspace=@mongodb-js/webpack-config-compass",
"prestart-web": "npm run prestart",
"start": "npm run start --workspace=mongodb-compass",
"start-web": "npm run start --workspace=@mongodb-js/compass-web",
"test": "lerna run test --concurrency 1 --stream",
"test-changed": "lerna run test --stream --concurrency 1 --since origin/HEAD",
"test-ci": "lerna run test-ci --concurrency 1",
"test-ci-electron": "lerna run test-ci-electron --concurrency 1",
"update-authors": "node scripts/generate-authors.js",
"preupdate-third-party-notices": "npm run -w packages/compass compile",
"update-third-party-notices": "cp packages/compass/THIRD-PARTY-NOTICES.md .",
"bump-packages": "bump-monorepo-packages",
"publish-packages": "lerna publish from-package --no-verify-access --no-push --no-git-tag-version --yes",
"version": "node ./scripts/align-monorepo-dependencies.js --no-commit",
"where": "monorepo-where",
"create-workspace": "node ./scripts/create-workspace.js",
"update-evergreen-config": "node .evergreen/template-yml.js",
"postupdate-evergreen-config": "evergreen validate .evergreen.yml",
"update-security-test-summary": "ts-node scripts/generate-security-test-summary.ts > docs/security-test-summary.md",
"version-packages-next": "npx lerna version \"0.0.0-next-$(git rev-parse HEAD)\" --exact --private --no-git-tag-version --force-publish --no-push --yes",
"publish-packages-next": "npx lerna publish from-package --no-private --dist-tag next --pre-dist-tag next --yes",
"prepare": "husky install",
"snyk-test": "node scripts/snyk-test.js",
"pregenerate-vulnerability-report": "npm run compile -w packages/compass && npm run snyk-test",
"generate-vulnerability-report": "mongodb-sbom-tools generate-vulnerability-report --snyk-reports=.sbom/snyk-test-result.json --dependencies=.sbom/dependencies.json --fail-on=high > .sbom/vulnerability-report.md",
"create-vulnerability-tickets": "mongodb-sbom-tools generate-vulnerability-report --snyk-reports=.sbom/snyk-test-result.json --dependencies=.sbom/dependencies.json --create-jira-issues",
"generate-first-party-deps-json": "mongodb-sbom-tools fetch-codeql-results --first-party-deps-list-dest=.sbom/first-party-deps.json --dependencies=.sbom/dependencies.json --exclude-repos=mongodb-js/kerberos",
"create-static-analysis-report": "mongodb-sbom-tools fetch-codeql-results --sarif-dest=.sbom/codeql.sarif.json",
"postcreate-static-analysis-report": "mongodb-sbom-tools sarif-to-markdown --sarif=.sbom/codeql.sarif.json --md=.sbom/codeql.md",
"precommit": "precommit"
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/compass.git"
},
"//": "See depcheck for why we have some of these dependencies at the root of the monorepo",
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/parser": "7.16.0",
"@mongodb-js/monorepo-tools": "^1.1.1",
"@mongodb-js/sbom-tools": "^0.7.0",
"@testing-library/dom": "^8.20.1",
"babel-loader": "^7.1.5",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"lerna": "^7.1.5",
"lodash": "^4.17.21",
"node-gyp": "^8.4.1"
},
"engines": {
"node": ">=18.19.1",
"npm": ">=10.2.4"
},
"bugs": {
"url": "https://docs.mongodb.com/compass/current/#contact",
"email": "[email protected]"
},
"workspaces": [
"packages/*",
"configs/*",
"scripts"
]
}