Created
March 25, 2020 06:10
-
-
Save ninanung/ecca32b3968757a67b6d3a7c9abb836a to your computer and use it in GitHub Desktop.
medium sample code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "vue-in-the-php", | |
"version": "1.0.0", | |
"description": "pack of code for Medium story example code", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"vue": "cross-env NODE_ENV=development webpack --config webpack.config.landing --watch", | |
"vue:build": "cross-env NODE_ENV=production webpack --config webpack.config.landing" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/ninanung/vue-in-the-php.git" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"bugs": { | |
"url": "https://github.com/ninanung/vue-in-the-php/issues" | |
}, | |
"homepage": "https://github.com/ninanung/vue-in-the-php#readme", | |
"dependencies": { | |
"@babel/core": "^7.9.0", | |
"@babel/plugin-proposal-class-properties": "^7.8.3", | |
"@babel/plugin-proposal-object-rest-spread": "^7.9.0", | |
"@babel/plugin-transform-runtime": "^7.9.0", | |
"@babel/preset-env": "^7.9.0", | |
"@babel/runtime": "^7.9.2", | |
"babel-loader": "^8.1.0", | |
"css-loader": "^3.4.2", | |
"file-loader": "^6.0.0", | |
"sass-loader": "^8.0.2", | |
"vue": "^2.6.11", | |
"vue-loader": "^15.9.1", | |
"vue-router": "^3.1.6", | |
"vue-style-loader": "^4.1.2", | |
"webpack": "^4.42.1", | |
"webpack-cli": "^3.3.11" | |
}, | |
"babel": { | |
"presets": [ | |
"@babel/preset-env" | |
], | |
"plugins": [ | |
"@babel/plugin-proposal-object-rest-spread", | |
"@babel/plugin-transform-runtime", | |
"@babel/plugin-proposal-class-properties" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment