forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "@mongodb-js/compass-serverstats",
"productName": "Compass Server Stats plugin",
"version": "16.6.0",
"apiVersion": "3.0.0",
"description": "Compass Real Time",
"main": "dist/index.js",
"compass:main": "src/index.js",
"exports": {
"browser": "./dist/browser.js",
"require": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.js"
},
"scripts": {
"compile": "npm run webpack -- --mode production",
"prewebpack": "rimraf ./dist",
"webpack": "webpack-compass",
"test": "mocha",
"test-electron": "xvfb-maybe electron-mocha --no-sandbox",
"check": "npm run lint && npm run depcheck",
"lint": "eslint \"./{src,test}/**/*.{js,jsx}\"",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"test-ci": "npm run test",
"test-ci-electron": "npm run test-electron",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"bootstrap": "npm run compile"
},
"license": "SSPL",
"peerDependencies": {
"@mongodb-js/compass-components": "^1.6.0",
"react": "^17.0.2"
},
"dependencies": {
"@mongodb-js/compass-components": "^1.6.0"
},
"devDependencies": {
"@mongodb-js/mocha-config-compass": "^1.0.2",
"@mongodb-js/webpack-config-compass": "^1.0.6",
"chai": "^4.1.2",
"d3": "^3.5.17",
"d3-timer": "^1.0.3",
"debug": "^4.2.0",
"depcheck": "^1.4.1",
"electron-mocha": "^10.1.0",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"eslint-config-mongodb-js": "^2.1.0",
"eslint-plugin-react": "^7.24.0",
"hadron-app": "^5.5.0",
"hadron-app-registry": "^9.0.4",
"lodash.has": "^4.5.2",
"lodash.isequal": "^4.5.0",
"lodash.max": "^4.0.1",
"lodash.remove": "^4.7.0",
"lodash.round": "^4.0.4",
"mocha": "^8.4.0",
"mongodb-data-service": "^22.5.0",
"mongodb-js-errors": "^0.3.2",
"mongodb-ns": "^2.4.0",
"prop-types": "^15.7.2",
"react-dom": "^17.0.2",
"reflux": "^0.4.1",
"rimraf": "^3.0.1",
"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"
}
}