1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-25 12:43:36 +00:00

stub out angular with webpack

This commit is contained in:
Kyle Spearrin
2018-04-03 22:14:54 -04:00
parent 848117ff86
commit 4d56d12ccb
19 changed files with 1225 additions and 38 deletions

View File

@@ -9,6 +9,8 @@
"start:firefox": "web-ext run --source-dir ./dist/",
"dev": "gulp build && webpack --config webpack.dev.js",
"dev:watch": "gulp build && webpack --config webpack.dev.js --watch",
"dev2": "webpack --config webpack2.js",
"dev2:watch": "webpack --config webpack2.js --watch",
"prod": "gulp build && webpack --config webpack.prod.js",
"dist": "npm run prod && gulp dist",
"dist:firefox": "npm run prod && gulp dist:firefox",
@@ -20,7 +22,18 @@
"test:watch": "karma start"
},
"devDependencies": {
"@ngtools/webpack": "1.10.2",
"@types/angular": "^1.6.34",
"@types/chrome": "0.0.51",
"@types/jasmine": "^2.8.2",
"@types/jquery": "^3.2.16",
"@types/lunr": "2.1.5",
"@types/node-forge": "0.6.10",
"@types/papaparse": "4.1.31",
"@types/safari-extension": "^0.0.27",
"@types/safari-extension-content": "^0.0.14",
"@types/tldjs": "1.7.1",
"@types/webcrypto": "^0.0.28",
"angular": "1.6.9",
"angular-animate": "1.6.9",
"angular-sweetalert": "1.1.2",
@@ -59,11 +72,11 @@
"karma-typescript": "^3.0.8",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"lunr": "2.1.6",
"ng-infinite-scroll": "1.3.0",
"ngclipboard": "1.1.1",
"node-forge": "0.7.1",
"node-sass": "^4.7.2",
"papaparse": "4.3.5",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"sweetalert": "1.1.3",
"tldjs": "2.0.0",
@@ -76,16 +89,23 @@
"webpack-merge": "^4.1.0"
},
"dependencies": {
"@types/angular": "^1.6.34",
"@types/chrome": "0.0.51",
"@types/jquery": "^3.2.16",
"@types/lunr": "2.1.5",
"@types/node-forge": "0.6.10",
"@types/papaparse": "4.1.31",
"@types/safari-extension": "^0.0.27",
"@types/safari-extension-content": "^0.0.14",
"@types/tldjs": "1.7.1",
"@types/webcrypto": "^0.0.28",
"@uirouter/angularjs": "^1.0.10"
"@angular/animations": "5.2.0",
"@angular/common": "5.2.0",
"@angular/compiler": "5.2.0",
"@angular/core": "5.2.0",
"@angular/forms": "5.2.0",
"@angular/http": "5.2.0",
"@angular/platform-browser": "5.2.0",
"@angular/platform-browser-dynamic": "5.2.0",
"@angular/router": "5.2.0",
"@angular/upgrade": "5.2.0",
"@uirouter/angularjs": "^1.0.10",
"angular2-toaster": "4.0.2",
"angulartics2": "5.0.1",
"core-js": "2.4.1",
"lunr": "2.1.6",
"node-forge": "0.7.1",
"rxjs": "5.5.6",
"zone.js": "0.8.19"
}
}