Created
February 12, 2019 20:59
-
-
Save mikecole/267ef5c5b04accb41b3b071e2128faa0 to your computer and use it in GitHub Desktop.
npm script
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": "the-project", | |
"version": "1.0.0", | |
"private": true, | |
"dependencies": { | |
"axios": "^0.18.0", | |
"babel-polyfill": "^6.26.0", | |
"evergreen-ui": "^4.6.0", | |
"react": "^16.4.1", | |
"react-bootstrap": "^0.32.4", | |
"react-dom": "^16.4.1" | |
}, | |
"optionalDependencies": { | |
"fsevents": "*" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.26.3", | |
"babel-loader": "^7.1.5", | |
"babel-preset-env": "^1.7.0", | |
"babel-preset-react": "^6.24.1", | |
"babel-preset-stage-2": "^6.24.1", | |
"clean-webpack-plugin": "^0.1.19", | |
"css-loader": "^1.0.0", | |
"node-sass": "^4.9.2", | |
"sass-loader": "^7.0.3", | |
"style-loader": "^0.21.0", | |
"uglifyjs-webpack-plugin": "^1.2.7", | |
"webpack": "^4.16.1", | |
"webpack-cli": "^3.1.0", | |
"webpack-dev-server": "^3.1.5", | |
"webpack-merge": "^4.1.3" | |
}, | |
"scripts": { | |
"dev-build": "webpack -d --config ./webpack.dev.js", | |
"prod-build": "webpack --config ./webpack.prod.js" | |
}, | |
"babel": { | |
"presets": [ | |
"env", | |
"react", | |
"stage-2" | |
] | |
}, | |
"-vs-binding": { | |
"ProjectOpened": [ | |
"dev-build" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment