-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
120 lines (120 loc) · 3.6 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
111
112
113
114
115
116
117
118
119
120
{
"name": "@mongosh/browser-repl",
"version": "0.0.0-dev.0",
"description": "Browser presentation component for Mongo Shell",
"engines": {
"node": ">=14.15.1"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./shell": {
"types": "./lib/components/shell.d.ts",
"default": "./lib/components/shell.js"
},
"./package.json": {
"default": "./package.json"
}
},
"scripts": {
"start": "webpack serve --config ./config/webpack.config.watch.js",
"clean": "rimraf ./lib",
"preprepublish": "rimraf ./lib",
"prepublish": "npm run compile",
"test": "karma start ./config/karma.conf.js --colors",
"test-ci": "node ../../scripts/run-if-package-requested.js npm test",
"test-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test",
"test-ci-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test-ci",
"eslint": "eslint",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run lint && npm run depcheck",
"depcheck": "depcheck",
"compile": "tsc -p tsconfig.json",
"prettier": "prettier",
"reformat": "npm run prettier -- --write . && npm run eslint --fix"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"mongosh": {
"unitTestsOnly": true,
"variants": [
"darwin"
]
},
"dependencies": {
"@mongosh/browser-runtime-core": "0.0.0-dev.0",
"@mongosh/errors": "0.0.0-dev.0",
"@mongosh/history": "0.0.0-dev.0",
"@mongosh/i18n": "0.0.0-dev.0",
"@mongosh/node-runtime-worker-thread": "0.0.0-dev.0",
"@mongosh/service-provider-core": "0.0.0-dev.0",
"numeral": "^2.0.6",
"text-table": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"mongodb": "^6.10.0",
"@mongodb-js/compass-components": "*",
"@mongodb-js/compass-editor": "*",
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@types/numeral": "^2.0.2",
"@types/react": "^16.9.17",
"@types/react-dom": "^18.0.8",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.4",
"@types/text-table": "^0.2.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-loader": "^8.3.0",
"buffer": "^6.0.3",
"depcheck": "^1.4.7",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"html-webpack-plugin": "^5.5.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.4",
"karma-webpack": "^5.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"prop-types": "^15.7.2",
"puppeteer": "^21.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-refresh": "^0.14.0",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"@mongodb-js/compass-components": "*",
"@mongodb-js/compass-editor": "*",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}