forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.56 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
{
"name": "@mongodb-js/compass-schema-validation",
"productName": "Compass Json Schema Validation plugin",
"version": "6.6.0",
"description": "Compass plugin for document JSON schema validation",
"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.js",
"types": "dist/src/index.d.ts",
"exports": {
"browser": "./dist/browser.js",
"require": "./dist/index.js"
},
"compass:exports": {
".": "./src/index.js"
},
"scripts": {
"bootstrap": "npm run postcompile",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"compile": "npm run webpack -- --mode production",
"prewebpack": "rimraf ./dist",
"webpack": "webpack-compass",
"postcompile": "tsc --emitDeclarationOnly",
"analyze": "npm run webpack -- --mode production --analyze",
"typecheck": "tsc -p tsconfig-lint.json --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": "npm run test-electron",
"reformat": "npm run prettier -- --write . && npm run eslint . --fix"
},
"peerDependencies": {
"@mongodb-js/compass-components": "^1.6.0",
"@mongodb-js/compass-crud": "^13.6.0",
"@mongodb-js/compass-editor": "^0.5.0",
"@mongodb-js/compass-logging": "^1.1.3",
"@mongodb-js/mongodb-redux-common": "^2.0.5",
"bson": "^5.0.1",
"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",
"chai": "^4.2.0",
"depcheck": "^1.4.1",
"electron": "^22.0.2",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"hadron-app": "^5.5.0",
"hadron-app-registry": "^9.0.4",
"hadron-ipc": "^3.1.1",
"javascript-stringify": "^2.0.1",
"less": "^3.11.1",
"lodash": "^4.17.15",
"mocha": "^8.4.0",
"mongodb-data-service": "^22.5.0",
"mongodb-instance-model": "^12.5.0",
"mongodb-ns": "^2.4.0",
"mongodb-query-parser": "^2.4.8",
"nyc": "^15.0.0",
"prop-types": "^15.7.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.1",
"semver": "^5.7.1",
"sinon": "^8.1.1"
},
"dependencies": {
"@mongodb-js/compass-components": "^1.6.0",
"@mongodb-js/compass-crud": "^13.6.0",
"@mongodb-js/compass-editor": "^0.5.0",
"@mongodb-js/compass-logging": "^1.1.3",
"@mongodb-js/mongodb-redux-common": "^2.0.5",
"bson": "^5.0.1",
"compass-preferences-model": "^2.6.0"
}
}