forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.4 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
121
122
123
124
125
{
"name": "@mongodb-js/compass-components",
"version": "1.25.0",
"description": "React Components used in Compass",
"license": "SSPL",
"main": "lib/index.js",
"compass:main": "src/index.ts",
"compass:exports": {
".": "./src/index.ts"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"bootstrap": "npm run compile",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"clean": "node -e \"fs.rmSync('lib', { recursive: true, force: true })\" || true",
"precompile": "npm run clean",
"compile": "tsc -p tsconfig.json",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"check": "npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test": "mocha",
"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",
"reformat": "npm run eslint . -- --fix && npm run prettier -- --write ."
},
"dependencies": {
"@dnd-kit/core": "^6.0.7",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@leafygreen-ui/badge": "^8.1.1",
"@leafygreen-ui/banner": "^7.0.19",
"@leafygreen-ui/button": "^21.0.12",
"@leafygreen-ui/card": "^10.0.6",
"@leafygreen-ui/checkbox": "^12.1.1",
"@leafygreen-ui/code": "^14.3.1",
"@leafygreen-ui/confirmation-modal": "^5.0.11",
"@leafygreen-ui/emotion": "^4.0.7",
"@leafygreen-ui/guide-cue": "^5.0.6",
"@leafygreen-ui/hooks": "^8.1.2",
"@leafygreen-ui/icon": "^12.0.0",
"@leafygreen-ui/icon-button": "^15.0.20",
"@leafygreen-ui/info-sprinkle": "^1.0.3",
"@leafygreen-ui/inline-definition": "^6.0.14",
"@leafygreen-ui/leafygreen-provider": "^3.1.11",
"@leafygreen-ui/lib": "^13.2.1",
"@leafygreen-ui/logo": "^9.0.1",
"@leafygreen-ui/marketing-modal": "^4.2.1",
"@leafygreen-ui/menu": "^23.0.2",
"@leafygreen-ui/modal": "^16.0.6",
"@leafygreen-ui/palette": "^4.0.8",
"@leafygreen-ui/pipeline": "^5.0.18",
"@leafygreen-ui/polymorphic": "^1.3.6",
"@leafygreen-ui/popover": "^11.3.0",
"@leafygreen-ui/portal": "^5.1.0",
"@leafygreen-ui/radio-box-group": "^12.0.16",
"@leafygreen-ui/radio-group": "^10.2.5",
"@leafygreen-ui/search-input": "^2.1.5",
"@leafygreen-ui/segmented-control": "^8.2.10",
"@leafygreen-ui/select": "^11.2.2",
"@leafygreen-ui/table": "^12.6.1",
"@leafygreen-ui/tabs": "^11.1.13",
"@leafygreen-ui/text-area": "^8.1.2",
"@leafygreen-ui/text-input": "^12.1.26",
"@leafygreen-ui/toast": "^6.1.23",
"@leafygreen-ui/toggle": "^10.0.19",
"@leafygreen-ui/tokens": "^2.5.1",
"@leafygreen-ui/tooltip": "^11.0.2",
"@leafygreen-ui/typography": "^18.2.3",
"@react-aria/interactions": "^3.9.1",
"@react-aria/tooltip": "^3.2.1",
"@react-aria/utils": "^3.13.1",
"@react-aria/visually-hidden": "^3.3.1",
"@react-stately/tooltip": "^3.0.5",
"bson": "^6.6.0",
"focus-trap-react": "^9.0.2",
"hadron-document": "^8.5.2",
"hadron-type-checker": "^7.2.1",
"is-electron-renderer": "^2.0.1",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-hotkeys-hook": "^4.3.7",
"react-intersection-observer": "^8.34.0",
"react-window": "^1.8.6"
},
"devDependencies": {
"@emotion/css": "^11.11.2",
"@mongodb-js/eslint-config-compass": "^1.1.1",
"@mongodb-js/mocha-config-compass": "^1.3.9",
"@mongodb-js/prettier-config-compass": "^1.0.2",
"@mongodb-js/tsconfig-compass": "^1.0.4",
"@testing-library/dom": "^8.20.1",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/chai": "^4.2.21",
"@types/chai-dom": "^0.0.10",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.5",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"react-dom": "^17.0.2",
"sinon": "^9.0.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"homepage": "https://github.com/mongodb-js/compass",
"publishConfig": {
"access": "public"
}
}