forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 3.46 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
{
"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": "node scripts/depalign.js",
"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 --",
"prestart": "npm run compile --workspace=@mongodb-js/webpack-config-compass",
"start": "npm run start --workspace=mongodb-compass",
"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",
"update-third-party-notices": "node scripts/gather-licenses.js 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": "node ./scripts/monorepo/where.js",
"create-workspace": "node ./scripts/create-workspace.js",
"update-evergreen-config": "node .evergreen/template-yml.js",
"publish-packages-next": "npx lerna publish \"0.0.0-next-$(git rev-parse HEAD)\" --force-publish --exact --no-git-tag-version --no-private --dist-tag next --pre-dist-tag next --no-verify-access --no-git-reset --yes",
"prepare": "husky install",
"precommit": "compass-scripts 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/bump-monorepo-packages": "^0.2.1",
"@testing-library/dom": "^8.11.1",
"@webpack-cli/serve": "^0.2.0",
"babel-loader": "^7.1.5",
"husky": "^8.0.3",
"lerna": "^4.0.0",
"node-gyp": "^8.4.1"
},
"engines": {
"node": ">=16.15.1",
"npm": ">=8.15.1"
},
"bugs": {
"url": "https://docs.mongodb.com/compass/current/#contact",
"email": "[email protected]"
},
"workspaces": [
"packages/*",
"configs/*",
"scripts"
]
}