-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "@mongodb-js/compass-serverstats",
"description": "Compass Real Time",
"private": true,
"version": "16.47.2",
"main": "dist/index.js",
"compass:main": "src/index.ts",
"exports": {
".": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.ts"
},
"types": "./dist/index.d.ts",
"scripts": {
"compile": "tsc -p tsconfig.json",
"test": "mocha",
"test-electron": "xvfb-maybe electron-mocha --no-sandbox",
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"check-ci": "npm run check",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"test-ci": "npm run test",
"test-ci-electron": "npm run test-electron",
"bootstrap": "npm run compile",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"license": "SSPL",
"dependencies": {
"@mongodb-js/compass-app-stores": "^7.34.2",
"@mongodb-js/compass-components": "^1.32.2",
"@mongodb-js/compass-connections": "^1.48.2",
"@mongodb-js/compass-telemetry": "^1.2.6",
"@mongodb-js/compass-workspaces": "^0.29.2",
"d3": "^3.5.17",
"d3-timer": "^1.0.3",
"debug": "^4.3.4",
"hadron-app-registry": "^9.2.9",
"lodash": "^4.17.21",
"mongodb-ns": "^2.4.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"reflux": "^0.4.1"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.1.9",
"@mongodb-js/mocha-config-compass": "^1.4.4",
"@mongodb-js/prettier-config-compass": "^1.0.4",
"@mongodb-js/testing-library-compass": "^1.0.4",
"@mongodb-js/tsconfig-compass": "^1.0.7",
"@types/d3": "^3.5.x",
"chai": "^4.1.2",
"depcheck": "^1.4.1",
"electron-mocha": "^12.2.0",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"react-dom": "^17.0.2",
"typescript": "^5.0.4",
"xvfb-maybe": "^0.2.1"
},
"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
}