|
4 | 4 | "description": "Service Dependency Graph panel for Grafana", |
5 | 5 | "main": "src/module.js", |
6 | 6 | "scripts": { |
7 | | - "build": "node --max-old-space-size=8192 ./node_modules/.bin/webpack --config webpack.config.prod.js", |
| 7 | + "build": "node --max-old-space-size=8192 ./node_modules/webpack/bin/webpack.js --config webpack.config.prod.js --progress", |
8 | 8 | "dev": "webpack --mode development", |
9 | | - "watch": "webpack --mode development --watch", |
10 | | - "test": "jest --config jest.config.js" |
| 9 | + "watch": "webpack --mode development --watch" |
11 | 10 | }, |
12 | 11 | "keywords": [ |
13 | 12 | "grafana", |
|
16 | 15 | "topology" |
17 | 16 | ], |
18 | 17 | "author": "Novatec", |
19 | | - "license": "Apache 2.0", |
| 18 | + "license": "Apache-2.0", |
20 | 19 | "devDependencies": { |
21 | 20 | "@babel/core": "^7.1.6", |
| 21 | + "@babel/plugin-proposal-class-properties": "^7.8.3", |
22 | 22 | "@babel/preset-env": "^7.1.6", |
| 23 | + "@babel/preset-typescript": "^7.8.3", |
23 | 24 | "@types/grafana": "https://[email protected]/CorpGlory/types-grafana.git", |
24 | 25 | "@types/jest": "^23.3.9", |
25 | 26 | "@types/lodash": "^4.14.118", |
26 | 27 | "@types/moment": "^2.13.0", |
27 | | - "babel": "~6.5.1", |
28 | | - "babel-core": "^6.26.3", |
29 | | - "babel-jest": "^23.6.0", |
30 | 28 | "babel-loader": "^8.0.4", |
31 | | - "babel-preset-env": "^1.7.0", |
32 | 29 | "clean-webpack-plugin": "^1.0.0", |
33 | | - "copy-webpack-plugin": "^4.6.0", |
| 30 | + "copy-webpack-plugin": "^5.1.1", |
34 | 31 | "css-loader": "^1.0.1", |
35 | | - "jest": "^24.8.0", |
36 | 32 | "ng-annotate-webpack-plugin": "^0.3.0", |
37 | 33 | "style-loader": "^0.23.1", |
38 | | - "ts-jest": "^23.10.4", |
39 | 34 | "ts-loader": "^5.3.0", |
40 | | - "uglifyjs-webpack-plugin": "1.3.0", |
| 35 | + "uglifyjs-webpack-plugin": "2.2.0", |
41 | 36 | "webpack": "^4.26.0", |
42 | 37 | "webpack-cli": "^3.2.3" |
43 | 38 | }, |
|
49 | 44 | "lodash": "^4.17.13", |
50 | 45 | "moment": "^2.12.0", |
51 | 46 | "typescript": "^3.1.6" |
| 47 | + }, |
| 48 | + "babel": { |
| 49 | + "presets": [ |
| 50 | + "@babel/preset-env", |
| 51 | + "@babel/preset-typescript" |
| 52 | + ], |
| 53 | + "plugins": [ |
| 54 | + "@babel/plugin-proposal-class-properties" |
| 55 | + ] |
52 | 56 | } |
53 | 57 | } |
0 commit comments