Created
May 22, 2021 07:50
-
-
Save PragatiVerma18/47442ee53b4329cbdf7af1823f48ccae to your computer and use it in GitHub Desktop.
The files required for building your first Adobe Photoshop and XD Plugin using VueJS - package.json has info about all dependencies
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_starter_plugin", | |
| "version": "1.0.0", | |
| "main": "main.js", | |
| "scripts": { | |
| "watch": "nodemon -w src -e js,vue,css -w webpack.config.js -x yarn build", | |
| "build": "webpack --mode development" | |
| }, | |
| "license": "none", | |
| "private": true, | |
| "devDependencies": { | |
| "clean-webpack-plugin": "^2.0.2", | |
| "copy-webpack-plugin": "^5.0.3", | |
| "css-loader": "^5.2.0", | |
| "style-loader": "^2.0.0", | |
| "file-loader": "^5.1.0", | |
| "nodemon": "^2.0.7", | |
| "vue-loader": "^15.9.6", | |
| "webpack": "^4.32.2", | |
| "webpack-cli": "^4.5.0" | |
| }, | |
| "dependencies": { | |
| "vue": "^2.6.12", | |
| "vue-template-compiler": "^2.6.12" | |
| }, | |
| "resolutions": { | |
| "acorn": "npm:acorn-with-stage3" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment