forked from opensearch-project/alerting-dashboards-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "opensearch-alerting-dashboards",
"version": "3.0.0.0",
"description": "OpenSearch Dashboards Alerting Plugin",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/opensearch-project/alerting-dashboards-plugin",
"repository": {
"type": "git",
"url": "https://github.com/opensearch-project/alerting-dashboards-plugin"
},
"config": {
"id": "alertingDashboards"
},
"scripts": {
"osd": "node ../../scripts/osd",
"opensearch": "node ../../scripts/opensearch",
"lint": "../../node_modules/.bin/eslint '**/*.js' -c .eslintrc --ignore-path .gitignore",
"test:jest:windows": "SET TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js",
"test:jest": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js",
"test:jest:update-snapshots": "yarn run test:jest -u",
"cypress:run:browser": "cypress open",
"cypress:run:ci": "cypress run",
"build": "yarn plugin-helpers build",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"postbuild": "echo Renaming build artifact to [$npm_package_config_id-$npm_package_version.zip] && mv build/$npm_package_config_id*.zip build/$npm_package_config_id-$npm_package_version.zip"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.22.9",
"@elastic/elastic-eslint-config-kibana": "link:../../packages/opensearch-eslint-config-opensearch-dashboards",
"@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards",
"cypress": "9.5.4",
"husky": "^3.0.0",
"lint-staged": "^10.2.0",
"@types/react": "^16.14.23"
},
"dependencies": {
"brace": "0.11.1",
"formik": "^2.2.6",
"lodash": "^4.17.21",
"query-string": "^6.13.2",
"react-vis": "^1.8.1",
"prettier": "^2.1.1"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"async": "^3.2.3",
"decode-uri-component": "^0.2.1",
"fstream": "1.0.12",
"glob-parent": "^5.1.2",
"json-schema": "^0.4.0",
"loader-utils": "1.4.2",
"minimist": "^1.2.6",
"moment": "^2.29.4",
"terser": "^4.8.1",
"tough-cookie": "^4.1.3",
"semver": "^5.7.2",
"**/d3-color": "^3.1.0",
"@cypress/request": "^3.0.0"
},
"engines": {
"yarn": "^1.21.1"
}
}