forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.21 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
{
"name": "@mongodb-js/compass-shell",
"productName": "Compass Shell plugin",
"version": "3.6.0",
"description": "Compass Shell Plugin",
"author": {
"name": "MongoDB Inc",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"homepage": "https://github.com/mongodb-js/compass",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.js",
"compass:main": "src/index.ts",
"exports": {
"browser": "./dist/browser.js",
"require": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.ts"
},
"scripts": {
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"compile": "npm run webpack -- --mode production",
"prewebpack": "rimraf ./dist",
"webpack": "webpack-compass",
"start": "npm run webpack serve -- --mode development",
"analyze": "npm run webpack -- --mode production --analyze",
"typecheck": "tsc --noEmit",
"eslint": "eslint",
"prettier": "prettier",
"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 -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": "echo \"TODO(COMPASS-5555): These tests are broken and disabled for now\"",
"reformat": "npm run prettier -- --write . && npm run eslint . --fix"
},
"dependencies": {
"@mongodb-js/compass-components": "^1.6.0",
"@mongodb-js/compass-logging": "^1.1.3",
"@mongodb-js/compass-utils": "^0.2.2",
"@mongodb-js/mongodb-redux-common": "^2.0.5",
"@mongosh/node-runtime-worker-thread": "^1.8.0",
"compass-preferences-model": "^2.6.0"
},
"peerDependencies": {
"@mongodb-js/compass-components": "^1.6.0",
"@mongodb-js/compass-logging": "^1.1.3",
"@mongodb-js/compass-utils": "^0.2.2",
"@mongodb-js/mongodb-redux-common": "^2.0.5",
"@mongosh/node-runtime-worker-thread": "^1.8.0",
"compass-preferences-model": "^2.6.0",
"react": "^17.0.2"
},
"devDependencies": {
"@mongodb-js/eslint-config-compass": "^1.0.3",
"@mongodb-js/mocha-config-compass": "^1.0.2",
"@mongodb-js/prettier-config-compass": "^1.0.0",
"@mongodb-js/tsconfig-compass": "^1.0.1",
"@mongodb-js/webpack-config-compass": "^1.0.6",
"@mongosh/browser-repl": "^1.8.0",
"@mongosh/logging": "^1.8.0",
"chai": "^4.2.0",
"depcheck": "^1.4.1",
"electron": "^22.0.2",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"hadron-app-registry": "9.0.4",
"hadron-ipc": "^3.1.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prop-types": "^15.7.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"rimraf": "^3.0.2",
"sinon": "^9.2.3"
}
}