* chore: remove enhanced-resolve It was introduced as a peer dependency of `webpack-dependency-suite`, see https://github.com/babel/babel/pull/7453 and https://travis-ci.org/github/babel/babel/jobs/347175454#L545 * chore: remove custom @lerna/collect-updates resolution The forked @lerna/collect-updates are meant to update runtime-corejs2 when helpers are updated. However they are now always force published. So we don't need the fork anymore
104 lines
3.1 KiB
JSON
104 lines
3.1 KiB
JSON
{
|
|
"name": "babel",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"bootstrap": "make bootstrap",
|
|
"codesandbox:build": "make build-no-bundle",
|
|
"build": "make build",
|
|
"fix": "make fix",
|
|
"lint": "make lint",
|
|
"test": "make test"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.10.4",
|
|
"@babel/core": "^7.11.0",
|
|
"@babel/eslint-config-internal": "workspace:*",
|
|
"@babel/eslint-parser": "workspace:*",
|
|
"@babel/eslint-plugin-development": "workspace:*",
|
|
"@babel/eslint-plugin-development-internal": "workspace:*",
|
|
"@babel/plugin-proposal-dynamic-import": "^7.10.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
|
|
"@babel/plugin-transform-for-of": "^7.10.4",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
|
|
"@babel/plugin-transform-runtime": "^7.11.0",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@babel/preset-flow": "^7.10.4",
|
|
"@babel/register": "^7.10.5",
|
|
"@babel/runtime": "^7.11.0",
|
|
"@rollup/plugin-babel": "^5.2.0",
|
|
"@rollup/plugin-commonjs": "^13.0.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@rollup/plugin-replace": "^2.3.3",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-plugin-transform-charcodes": "^0.2.0",
|
|
"chalk": "^2.4.2",
|
|
"charcodes": "^0.2.0",
|
|
"eslint": "^7.5.0",
|
|
"eslint-import-resolver-node": "^0.3.3",
|
|
"eslint-plugin-flowtype": "^4.6.0",
|
|
"eslint-plugin-import": "^2.22.0",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"fancy-log": "^1.3.3",
|
|
"flow-bin": "^0.123.0",
|
|
"gulp": "^4.0.2",
|
|
"gulp-babel": "^8.0.0",
|
|
"gulp-filter": "^5.1.0",
|
|
"gulp-newer": "^1.0.0",
|
|
"gulp-plumber": "^1.2.1",
|
|
"husky": "^3.0.0",
|
|
"jest": "^24.9.0",
|
|
"lerna": "^3.19.0",
|
|
"lerna-changelog": "^0.5.0",
|
|
"lint-staged": "^9.2.0",
|
|
"mergeiterator": "^1.2.5",
|
|
"prettier": "^2.0.5",
|
|
"pump": "^3.0.0",
|
|
"rimraf": "^2.6.3",
|
|
"rollup": "^2.26.5",
|
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
"rollup-plugin-terser": "^7.0.0",
|
|
"test262-stream": "^1.3.0",
|
|
"through2": "^2.0.0",
|
|
"typescript": "^3.6.3"
|
|
},
|
|
"workspaces": [
|
|
"codemods/*",
|
|
"eslint/*",
|
|
"packages/*"
|
|
],
|
|
"resolutions": {
|
|
"@lerna/version": "patch:@lerna/version@npm:3.20.2#.yarn-patches/@lerna/version.patch",
|
|
"@lerna/npm-publish": "patch:@lerna/npm-publish@npm:3.18.5#.yarn-patches/@lerna/npm-publish.patch",
|
|
"@lerna/package": "patch:@lerna/package@npm:3.16.0#.yarn-patches/@lerna/package.patch",
|
|
"@lerna/package-graph": "patch:@lerna/package-graph@npm:3.18.5#.yarn-patches/@lerna/package-graph.patch",
|
|
"@lerna/pack-directory": "patch:@lerna/pack-directory@npm:3.16.4#.yarn-patches/@lerna/pack-directory.patch",
|
|
"caniuse-lite": "npm:1.0.30001077"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.9.0",
|
|
"yarn": ">=1.4.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --format=codeframe"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"dependenciesMeta": {
|
|
"core-js": {
|
|
"built": false
|
|
},
|
|
"core-js-pure": {
|
|
"built": false
|
|
}
|
|
}
|
|
}
|