Last active
July 30, 2017 15:08
-
-
Save carlosrymer/9ade66b532f335ea1ac59409ae3329d3 to your computer and use it in GitHub Desktop.
A sample package.json for configuring an Angular 1.x app with Webpack 3.
This file contains 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": "myApp", | |
"version": "1.0.0", | |
"private": "true", | |
"scripts": { | |
"build": "./node_modules/.bin/webpack --config webpack.build.config.js", | |
"start": "./node_modules/.bin/webpack-dev-server --config webpack.dev.config.js --open" | |
}, | |
"dependencies": { | |
"angular": "1.6.5", | |
"angular-animate": "1.6.5", | |
"angular-aria": "1.6.5", | |
"angular-cookies": "1.6.5", | |
"angular-material": "1.1.1", | |
"angular-messages": "1.6.5", | |
"angular-resource": "1.6.5", | |
"angular-route": "1.6.5", | |
"angular-sanitize": "1.6.5", | |
"angular-touch": "1.6.5", | |
"babel-core": "6.25.0", | |
"babel-loader": "7.0.0", | |
"babel-plugin-transform-runtime": "6.23.0", | |
"babel-polyfill": "6.23.0", | |
"babel-preset-latest": "6.24.1", | |
"babel-register": "6.24.1", | |
"babel-runtime": "6.23.0", | |
"css-loader": "0.28.4", | |
"extract-text-webpack-plugin": "3.0.0", | |
"html-webpack-plugin": "2.28.0", | |
"lodash": "4.17.4", | |
"ng-annotate-loader": "0.6.1", | |
"node-sass": "4.5.3", | |
"preprocess": "3.1.0", | |
"raw-loader": "0.5.1", | |
"sass-loader": "6.0.5", | |
"sass-resources-loader": "1.3.0", | |
"style-loader": "0.18.2", | |
"webpack": "3.4.1", | |
"webpack-file-preprocessor-plugin": "0.0.1" | |
}, | |
"devDependencies": { | |
"webpack-dev-server": "2.5.0" | |
}, | |
"babel": { | |
"plugins": [ | |
"transform-runtime" | |
], | |
"presets": [ | |
"latest" | |
] | |
}, | |
"engines": { | |
"node": ">=6.9.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment