Update babel requirements

This commit is contained in:
Sonny Bakker 2023-08-06 22:47:45 +02:00
parent c268768187
commit d7b9006c64
2 changed files with 2052 additions and 2150 deletions

4164
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -4,12 +4,12 @@
"description": "Application for viewing RSS feeds",
"main": "index.js",
"scripts": {
"lint": "npx prettier \"src/newsreader/js/**/*.js\" --check",
"format": "npx prettier \"src/newsreader/js/**/*.js\" --write",
"build": "npx webpack --config webpack.dev.babel.js",
"build:watch": "npx webpack --config webpack.dev.babel.js --watch",
"build:prod": "npx webpack --config webpack.prod.babel.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "prettier \"src/newsreader/js/**/*.js\" --check",
"format": "prettier \"src/newsreader/js/**/*.js\" --write",
"build": "webpack --config webpack.dev.babel.js",
"build:watch": "webpack --config webpack.dev.babel.js --watch",
"build:prod": "webpack --config webpack.prod.babel.js",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"repository": {
@ -29,15 +29,15 @@
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-syntax-function-bind": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-function-bind": "^7.22.5",
"@babel/plugin-syntax-function-bind": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.12.13",
"@babel/runtime": "^7.12.13",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.6",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",