@babel/polyfill is deprecated in ≥ 7.4 [1], and we never actually used it as we forgot to import it [2]. Move to core-js/stable. [1] https://babeljs.io/blog/2019/03/19/7.4.0#migration-from-core-js-2 [2] https://babeljs.io/docs/en/babel-polyfill#usage-in-node-browserify-webpack
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "starter-kit",
|
|
"version": "0.1.0",
|
|
"description": "Scaffolding for a cockpit module",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:cockpit/starter-kit.git",
|
|
"author": "",
|
|
"license": "LGPL-2.1",
|
|
"scripts": {
|
|
"watch": "webpack --watch",
|
|
"build": "webpack",
|
|
"eslint": "eslint --ext .js --ext .jsx src/",
|
|
"eslint:fix": "eslint --fix --ext .js --ext .jsx src/"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.4",
|
|
"@babel/preset-env": "^7.5.4",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^9.0.0",
|
|
"babel-loader": "^8.0.0",
|
|
"chrome-remote-interface": "^0.26.1",
|
|
"compression-webpack-plugin": "^1.1.11",
|
|
"copy-webpack-plugin": "^4.5.2",
|
|
"css-loader": "^0.28.11",
|
|
"eslint": "^6.0.1",
|
|
"eslint-config-standard": "^13.0.0",
|
|
"eslint-config-standard-react": "^7.0.2",
|
|
"eslint-loader": "^2.2.1",
|
|
"eslint-plugin-flowtype": "^3.11.1",
|
|
"eslint-plugin-import": "^2.18.0",
|
|
"eslint-plugin-node": "^9.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-react": "^7.14.2",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"htmlparser": "^1.7.7",
|
|
"jed": "^1.1.1",
|
|
"po2json": "^0.4.5",
|
|
"sass-loader": "^7.0.3",
|
|
"sizzle": "^2.3.3",
|
|
"stdio": "^0.2.7",
|
|
"webpack": "^4.17.1",
|
|
"webpack-cli": "^3.1.0"
|
|
},
|
|
"dependencies": {
|
|
"core-js": "^3.1.4",
|
|
"node-sass": "4.12.0",
|
|
"react": "16.8.6",
|
|
"react-dom": "16.8.6"
|
|
}
|
|
}
|