forked from opensearch-project/dashboards-observability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "observability-dashboards",
"version": "3.0.0.0",
"main": "index.ts",
"license": "Apache-2.0",
"scripts": {
"osd": "node ../../scripts/osd",
"build": "yarn plugin-helpers build",
"test": "../../node_modules/.bin/jest --config ./test/jest.config.js",
"cypress:run": "TZ=America/Los_Angeles cypress run",
"cypress:open": "TZ=America/Los_Angeles cypress open",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"prepare": "husky install",
"lint:es": "node ../../scripts/eslint",
"lint": "yarn lint:es",
"cypress:parallel": "cypress-parallel -s cypress:run -t 2 -d .cypress/integration"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn lint --fix"
]
},
"dependencies": {
"@algolia/autocomplete-core": "^1.4.1",
"@algolia/autocomplete-theme-classic": "^1.2.1",
"@nteract/outputs": "^3.0.11",
"@nteract/presentational-components": "^3.4.3",
"@reduxjs/toolkit": "^1.6.1",
"ajv": "^8.11.0",
"antlr4": "4.8.0",
"antlr4ts": "^0.5.0-alpha.4",
"json5": "^2.2.3",
"mime": "^3.0.0",
"performance-now": "^2.1.0",
"plotly.js-dist": "^2.29.1",
"react-graph-vis": "^1.0.7",
"react-paginate": "^8.1.3",
"react-plotly.js": "^2.6.0",
"redux-persist": "^6.0.0",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"@cypress/skip-test": "^2.6.1",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/mime": "^3.0.1",
"@types/react-plotly.js": "^2.6.3",
"@types/react-test-renderer": "^18.0.0",
"@types/sanitize-filename": "^1.6.3",
"antlr4ts-cli": "^0.5.0-alpha.4",
"cypress": "^13.6.0",
"cypress-multi-reporters": "^1.6.4",
"cypress-parallel": "^0.14.0",
"cypress-watch-and-reload": "^1.10.6",
"eslint": "^6.8.0",
"husky": "^8.0.3",
"jest-dom": "^4.0.0",
"lint-staged": "^13.1.0"
},
"resolutions": {
"@types/react": "^16.14.23",
"react-syntax-highlighter": "^15.4.3",
"prismjs": "^1.22.0",
"trim": "^1.0.0",
"lodash": "^4.17.21",
"glob-parent": "^6.0.1",
"ansi-regex": "^5.0.1",
"json-schema": "^0.4.0",
"qs": "~6.5.3",
"minimatch": "^3.0.5",
"debug": "^3.1.0",
"yaml": "^2.2.2",
"tough-cookie": "^4.1.3",
"semver": "^7.5.2",
"@cypress/request": "^3.0.0",
"braces": "^3.0.3",
"ws": "^8.18.0"
},
"eslintIgnore": [
"common/query_manager/antlr/output/*",
"node_modules/*",
"target/*"
]
}