-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathpackage.json
113 lines (113 loc) · 3.87 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@mongodb-js/compass-aggregations",
"description": "Compass Aggregation Pipeline Builder",
"private": true,
"version": "9.51.1",
"main": "dist/index.js",
"compass:main": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.ts"
},
"scripts": {
"bootstrap": "npm run compile",
"compile": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"eslint": "eslint",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test": "mocha",
"test-electron": "xvfb-maybe electron-mocha --no-sandbox",
"test-cov": "nyc --compact=false --produce-source-map=false -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
"test-watch": "npm run test -- --watch",
"test-ci": "npm run test-cov",
"test-ci-electron": "npm run test-electron",
"prettier": "prettier",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"license": "SSPL",
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.2.1",
"@mongodb-js/mocha-config-compass": "^1.5.1",
"@mongodb-js/prettier-config-compass": "^1.1.1",
"@mongodb-js/testing-library-compass": "^1.1.1",
"@mongodb-js/tsconfig-compass": "^1.1.1",
"@types/babel__generator": "^7.6.8",
"@types/enzyme": "^3.10.14",
"@types/lodash": "^4.14.188",
"@types/semver": "^7.3.9",
"chai": "^4.3.6",
"depcheck": "^1.4.1",
"electron-mocha": "^12.2.0",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"react-dom": "^17.0.2",
"sinon": "^9.2.3",
"typescript": "^5.0.4",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@babel/generator": "^7.19.5",
"@babel/parser": "^7.19.4",
"@babel/types": "^7.19.4",
"@dnd-kit/core": "^6.0.7",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@mongodb-js/atlas-service": "^0.34.1",
"@mongodb-js/compass-app-stores": "^7.35.1",
"@mongodb-js/compass-collection": "^4.48.1",
"@mongodb-js/compass-components": "^1.33.1",
"@mongodb-js/compass-connections": "^1.49.1",
"@mongodb-js/compass-crud": "^13.49.1",
"@mongodb-js/compass-editor": "^0.35.1",
"@mongodb-js/compass-field-store": "^9.24.1",
"@mongodb-js/compass-generative-ai": "^0.29.1",
"@mongodb-js/compass-logging": "^1.5.1",
"@mongodb-js/compass-telemetry": "^1.3.1",
"@mongodb-js/compass-utils": "^0.7.1",
"@mongodb-js/compass-workspaces": "^0.30.1",
"@mongodb-js/explain-plan-helper": "^1.3.1",
"@mongodb-js/mongodb-constants": "^0.10.0",
"@mongodb-js/my-queries-storage": "^0.21.1",
"@mongodb-js/shell-bson-parser": "^1.1.2",
"bson": "^6.10.1",
"compass-preferences-model": "^2.32.1",
"hadron-app-registry": "^9.3.1",
"hadron-document": "^8.7.1",
"hadron-type-checker": "^7.3.1",
"lodash": "^4.17.21",
"mongodb": "^6.12.0",
"mongodb-collection-model": "^5.24.1",
"mongodb-data-service": "^22.24.1",
"mongodb-database-model": "^2.24.1",
"mongodb-instance-model": "^12.25.1",
"mongodb-ns": "^2.4.2",
"mongodb-query-parser": "^4.2.3",
"mongodb-schema": "^12.2.0",
"prop-types": "^15.7.2",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"semver": "^7.6.2"
},
"homepage": "https://github.com/mongodb-js/compass",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"is_compass_plugin": true
}