Skip to content

Instantly share code, notes, and snippets.

@irrationnelle
Last active May 12, 2018 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irrationnelle/62bb4aedc665da4ba711db27af583dd3 to your computer and use it in GitHub Desktop.
Save irrationnelle/62bb4aedc665da4ba711db27af583dd3 to your computer and use it in GitHub Desktop.
바벨 7 package.json
{
"name": "babel7-test",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "babel-node index.js"
},
"keywords": ["babel7"],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/node": "^7.0.0-beta.46",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-stage-0": "^7.0.0-beta.46",
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs"
}
],
[
"@babel/preset-stage-0",
{
"decoratorsLegacy": true
}
]
],
"plugins": ["@babel/plugin-proposal-pipeline-operator"]
},
"dependencies": {
"ramda": "^0.25.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment