csx/package.json
Miel Truyen 72f38c1137 Make sure to actually use yarn to install the main-packages, otherwise the packages.json#resolutions property will not be used and @babel/helpers would not get overruled
Overruled @babel/helpers to fix how initializers play with decorated properties. Thus circumventing the imperformant and lengthy code being generated by babel in the non-legacy option.
2019-11-05 21:11:01 +01:00

45 lines
1.8 KiB
JSON

{
"name": "csx-ce-monorepo",
"version": "0.0.1",
"dependencies": {},
"devDependencies": {
"@babel/cli": "latest",
"@babel/core": "7.7.0",
"@babel/plugin-proposal-class-properties": "latest",
"@babel/plugin-proposal-decorators": "latest",
"@babel/plugin-proposal-export-default-from": "latest",
"@babel/plugin-proposal-export-namespace-from": "latest",
"@babel/plugin-proposal-nullish-coalescing-operator": "latest",
"@babel/plugin-proposal-optional-chaining": "latest",
"@babel/plugin-proposal-private-methods": "latest",
"@babel/plugin-transform-react-jsx": "latest",
"@babel/preset-env": "latest",
"jsdoc": "latest",
"sass": "latest",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-node-resolve": "latest",
"rollup-plugin-commonjs": "latest",
"rollup-plugin-terser": "latest",
"rollup-plugin-copy": "latest",
"rollup-plugin-sass": "latest",
"serve": "latest",
"npm-run-all": "latest"
},
"scripts": {
"dev": "npm-run-all -p watch start:test",
"build": "npm-run-all -s build:babel-transform-csx build:csx-custom-elements build:test",
"watch": "npm-run-all -p watch:babel-transform-csx watch:csx-custom-elements watch:test",
"start:test": "serve public",
"build:test": "rollup -c",
"watch:test": "rollup -c -w",
"build:babel-transform-csx": "cd ./packages/babel-plugin-transform-csx-jsx && npm run build",
"build:csx-custom-elements": "cd ./packages/csx-custom-elements && npm run build",
"watch:babel-transform-csx": "cd ./packages/babel-plugin-transform-csx-jsx && npm run watch",
"watch:csx-custom-elements": "cd ./packages/csx-custom-elements && npm run watch"
},
"resolutions": {
"@babel/helpers": "file:./packages/babel-helpers"
}
}