-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.53 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.53 KB
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
{
"name": "@mongodb-js/compass-data-modeling",
"description": "Data modeling diagram workspace and all related services",
"author": {
"name": "MongoDB Inc",
"email": "compass@mongodb.com"
},
"private": true,
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "compass@mongodb.com"
},
"homepage": "https://github.com/mongodb-js/compass",
"version": "1.51.0",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"files": [
"dist"
],
"license": "SSPL",
"main": "dist/index.js",
"compass:main": "src/index.ts",
"exports": {
".": "./dist/index.js",
"./provider": "./dist/provider/index.js",
"./renderer": "./dist/services/data-model-storage-electron.js",
"./web": "./dist/services/data-model-storage-web.js"
},
"compass:exports": {
".": "./src/index.ts",
"./provider": "./src/provider/index.tsx",
"./renderer": "./src/services/data-model-storage-electron.tsx",
"./web": "./src/services/data-model-storage-web.tsx"
},
"types": "./dist/index.d.ts",
"scripts": {
"bootstrap": "npm run compile",
"compile": "tsc -p tsconfig-build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"eslint": "eslint-compass",
"prettier": "prettier-compass",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"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",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"dependencies": {
"@mongodb-js/atlas-service": "^0.83.1",
"@mongodb-js/compass-app-registry": "^9.9.1",
"@mongodb-js/compass-app-stores": "^7.86.0",
"@mongodb-js/compass-components": "^1.64.1",
"@mongodb-js/compass-connections": "^1.100.0",
"@mongodb-js/compass-electron-menu": "^0.2.3",
"@mongodb-js/compass-logging": "^1.12.1",
"@mongodb-js/compass-telemetry": "^1.27.1",
"@mongodb-js/compass-user-data": "^0.17.1",
"@mongodb-js/compass-utils": "^0.9.30",
"@mongodb-js/compass-workspaces": "^0.81.0",
"@mongodb-js/workspace-info": "^1.6.1",
"bson": "^7.2.0",
"compass-preferences-model": "^2.74.1",
"html-to-image": "1.11.11",
"lodash": "^4.17.23",
"mongodb": "^7.1.0",
"mongodb-ns": "^3.0.1",
"mongodb-schema": "^12.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.4.19",
"@mongodb-js/mocha-config-compass": "^1.7.7",
"@mongodb-js/prettier-config-compass": "^1.2.9",
"@mongodb-js/testing-library-compass": "^1.5.3",
"@mongodb-js/tsconfig-compass": "^1.2.14",
"@types/chai": "^4.2.21",
"@types/chai-dom": "^0.0.10",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.10",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.6",
"depcheck": "^1.4.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"typescript": "^5.9.3",
"xvfb-maybe": "^0.2.1"
},
"is_compass_plugin": true
}