mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* build(npm): remove ts-loader from core and input-datasource * build(input-datasource): update webpack config to use swc-loader * chore(e2e): replace ts-loader with esbuild-loader
37 lines
1000 B
JSON
37 lines
1000 B
JSON
{
|
|
"name": "@grafana-plugins/input-datasource",
|
|
"version": "10.3.0-pre",
|
|
"description": "Input Datasource",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/grafana/grafana.git"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn test && webpack -c webpack.config.ts --env production",
|
|
"dev": "webpack -w -c webpack.config.ts --env development",
|
|
"test": "jest -c jest.config.js"
|
|
},
|
|
"author": "Grafana Labs",
|
|
"devDependencies": {
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
|
"@types/jest": "26.0.15",
|
|
"@types/react": "18.0.28",
|
|
"copy-webpack-plugin": "11.0.0",
|
|
"eslint-webpack-plugin": "4.0.0",
|
|
"fork-ts-checker-webpack-plugin": "8.0.0",
|
|
"jest": "29.3.1",
|
|
"jest-environment-jsdom": "29.3.1",
|
|
"swc-loader": "0.2.3",
|
|
"ts-jest": "29.0.5",
|
|
"ts-node": "10.9.1",
|
|
"webpack": "5.76.0"
|
|
},
|
|
"dependencies": {
|
|
"@grafana/data": "10.3.0-pre",
|
|
"@grafana/ui": "10.3.0-pre",
|
|
"react": "18.2.0",
|
|
"tslib": "2.5.0"
|
|
}
|
|
}
|