-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "sensu-sensugo-datasource",
"version": "1.2.1",
"description": "Sensu Go Data Source for Grafana",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"precommit": "npm run test && npm run lint && lint-staged yarn",
"test": "jest",
"lint": "eslint . --ext .ts",
"pretty": "prettier --write src/**/*.ts",
"upgrade-interactive": "npm-check --update"
},
"author": "Novatec Consulting GmbH",
"license": "",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/grafana": "github:CorpGlory/types-grafana.git",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.160",
"@types/papaparse": "^4.5.7",
"@types/react": "^16.6.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.3.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "2.1.0",
"eslint": "^7.7.0",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"husky": "^1.0.0-rc.13",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"moment": "^2.29.4",
"ng-annotate-webpack-plugin": "^0.3.0",
"npm-check": "^5.9.2",
"prettier": "1.10.2",
"release-it": "^10.0.3",
"replace-in-file-webpack-plugin": "^1.0.6",
"style-loader": "^0.21.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"resolutions": {
"webpack/watchpack/chokidar/fsevents": "1.2.4"
}
}