References: https://www.ostechnix.com/install-mean-js-stack-ubuntu/
local: http://myprojects.advchaweb.com/index.php/2016/08/24/my-ubuntu-14-04-and-apps-installation-error-and-solution/
MEAN.JS is an Open-Source, full-Stack JavaScript solution for building fast, and robust web applications.
MEAN.JS stack consists of the following:
MongoDB – NoSQL database.
Express – NodeJS server-side application web framework.
AngularJS – Client-side web application framework.
Node.js – JavaScript run-time, popular for being a web server platform.
I already installed almost all components needed in http://myprojects.advchaweb.com/index.php/2016/08/24/my-ubuntu-14-04-and-apps-installation-error-and-solution/.
Node:
|
1 2 |
teddy@teddy-K43SJ:~/Documents/works/zend$ node -v v6.9.1 |
npm:
|
1 2 |
teddy@teddy-K43SJ:~/Documents/works/zend$ npm -v 3.10.8 |
MongoDb:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
teddy@teddy-K43SJ:~/Documents/works/zend$ mongod mongod --help for help and startup options Thu Feb 16 13:47:30.402 [initandlisten] MongoDB starting : pid=20079 port=27017 dbpath=/data/db/ 64-bit host=teddy-K43SJ Thu Feb 16 13:47:30.402 [initandlisten] db version v2.4.9 Thu Feb 16 13:47:30.402 [initandlisten] git version: nogitversion Thu Feb 16 13:47:30.402 [initandlisten] build info: Linux orlo 3.2.0-58-generic #88-Ubuntu SMP Tue Dec 3 17:37:58 UTC 2013 x86_64 BOOST_LIB_VERSION=1_54 Thu Feb 16 13:47:30.402 [initandlisten] allocator: tcmalloc Thu Feb 16 13:47:30.402 [initandlisten] options: {} Thu Feb 16 13:47:30.403 [initandlisten] exception in initAndListen: 10296 ********************************************************************* ERROR: dbpath (/data/db/) does not exist. Create this directory or give existing directory in --dbpath. See http://dochub.mongodb.org/core/startingandstoppingmongo ********************************************************************* , terminating Thu Feb 16 13:47:30.403 dbexit: Thu Feb 16 13:47:30.403 [initandlisten] shutdown: going to close listening sockets... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: going to flush diaglog... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: going to close sockets... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: waiting for fs preallocator... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: lock for final commit... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: final commit... Thu Feb 16 13:47:30.403 [initandlisten] shutdown: closing all files... Thu Feb 16 13:47:30.403 [initandlisten] closeAllFiles() finished Thu Feb 16 13:47:30.403 dbexit: really exiting now |
|
1 2 |
teddy@teddy-K43SJ:~$ mongo --version MongoDB shell version: 2.4.9 |
Bower:
|
1 2 |
teddy@teddy-K43SJ:~/Documents/works/zend$ bower -v 1.8.0 |
Grunt:
|
1 2 3 4 5 6 7 8 9 10 |
teddy@teddy-K43SJ:~/Documents/works/zend$ grunt -v grunt-cli: The grunt command line interface. (v0.1.13) Fatal error: Unable to find local grunt. If you're seeing this message, either a Gruntfile wasn't found or grunt hasn't been installed locally to your project. For more information about installing and configuring grunt, please see the Getting Started guide: http://gruntjs.com/getting-started |
Gulp:
|
1 2 3 |
teddy@teddy-K43SJ:~/Documents/works/zend$ gulp -v [13:48:47] CLI version 3.9.0 [13:48:47] Local version 3.9.0 |
OK. Now download and install MEAN.JS Stack (I put them in /Documents/node/ directory):
|
1 2 3 4 5 6 7 |
teddy@teddy-K43SJ:~/Documents/node$ git clone https://github.com/meanjs/mean.git meanjs Cloning into 'meanjs'... remote: Counting objects: 9984, done. remote: Total 9984 (delta 0), reused 0 (delta 0), pack-reused 9984 Receiving objects: 100% (9984/9984), 3.10 MiB | 49.00 KiB/s, done. Resolving deltas: 100% (5093/5093), done. Checking connectivity... done. |
Go into the new directory created ‘meanjs’
|
1 |
teddy@teddy-K43SJ:~/Documents/node$ cd meanjs/ |
Install the nodejs dependencies (it’ll take time):
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ sudo npm install [sudo] password for teddy: npm WARN deprecated mongodb@2.2.11: Please upgrade to 2.2.19 or higher npm WARN deprecated ignore@2.2.19: several bugs fixed in v3.2.1 npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. npm WARN deprecated minimatch@0.3.0: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN lifecycle v8-debug@0.7.7~preinstall: cannot run in wd %s %s (wd=%s) v8-debug@0.7.7 node -e 'process.exit(0)' /home/teddy/Documents/node/meanjs/node_modules/.staging/v8-debug-9a1715c8 npm WARN lifecycle v8-profiler@5.6.5~preinstall: cannot run in wd %s %s (wd=%s) v8-profiler@5.6.5 node -e 'process.exit(0)' /home/teddy/Documents/node/meanjs/node_modules/.staging/v8-profiler-b8e3b432 npm WARN prefer global node-gyp@3.5.0 should be installed with -g > v8-debug@0.7.7 install /home/teddy/Documents/node/meanjs/node_modules/v8-debug > node-pre-gyp install --fallback-to-build [v8-debug] Success: "/home/teddy/Documents/node/meanjs/node_modules/v8-debug/build/debug/v0.7.7/node-v48-linux-x64/debug.node" is installed via remote > v8-profiler@5.6.5 install /home/teddy/Documents/node/meanjs/node_modules/v8-profiler > node-pre-gyp install --fallback-to-build [v8-profiler] Success: "/home/teddy/Documents/node/meanjs/node_modules/v8-profiler/build/profiler/v5.6.5/node-v48-linux-x64/profiler.node" already installed Pass --update-binary to reinstall or --build-from-source to recompile > node-sass@3.13.1 install /home/teddy/Documents/node/meanjs/node_modules/node-sass > node scripts/install.js Downloading binary from https://github.com/sass/node-sass/releases/download/v3.13.1/linux-x64-48_binding.node Download complete ] - : Binary saved to /home/teddy/Documents/node/meanjs/node_modules/node-sass/vendor/linux-x64-48/binding.node Caching binary to /home/teddy/.npm/node-sass/3.13.1/linux-x64-48_binding.node > phantomjs-prebuilt@2.1.14 install /home/teddy/Documents/node/meanjs/node_modules/phantomjs-prebuilt > node install.js PhantomJS not found on PATH Downloading https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2 Saving to /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 Receiving... [========================================] 99% Received 22866K total. Extracting tar contents (via spawned process) Removing /home/teddy/Documents/node/meanjs/node_modules/phantomjs-prebuilt/lib/phantom Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1487228710497/phantomjs-2.1.1-linux-x86_64 -> /home/teddy/Documents/node/meanjs/node_modules/phantomjs-prebuilt/lib/phantom Writing location.js file Done. Phantomjs binary available at /home/teddy/Documents/node/meanjs/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs > node-sass@3.13.1 postinstall /home/teddy/Documents/node/meanjs/node_modules/node-sass > node scripts/build.js Binary found at /home/teddy/Documents/node/meanjs/node_modules/node-sass/vendor/linux-x64-48/binding.node Testing binary Binary is fine > gifsicle@3.0.4 postinstall /home/teddy/Documents/node/meanjs/node_modules/gifsicle > node lib/install.js ✔ gifsicle pre-build test passed successfully > jpegtran-bin@3.2.0 postinstall /home/teddy/Documents/node/meanjs/node_modules/jpegtran-bin > node lib/install.js ✔ jpegtran pre-build test passed successfully > optipng-bin@3.1.2 postinstall /home/teddy/Documents/node/meanjs/node_modules/optipng-bin > node lib/install.js ✔ optipng pre-build test passed successfully > pngquant-bin@3.1.1 postinstall /home/teddy/Documents/node/meanjs/node_modules/pngquant-bin > node lib/install.js ✔ pngquant pre-build test passed successfully npm WARN lifecycle meanjs@0.5.0~postinstall: cannot run in wd %s %s (wd=%s) meanjs@0.5.0 bower install --allow-root && bower prune --allow-root /home/teddy/Documents/node/meanjs meanjs@0.5.0 /home/teddy/Documents/node/meanjs ├─┬ acl@0.4.10 │ ├── async@2.1.4 │ ├── bluebird@3.4.7 │ ├── lodash@4.17.4 │ ├─┬ mongodb@2.2.24 │ │ ├── es6-promise@3.2.1 │ │ ├─┬ mongodb-core@2.1.8 │ │ │ ├── bson@1.0.4 │ │ │ └── require_optional@1.0.0 │ │ └─┬ readable-stream@2.1.5 │ │ ├── buffer-shims@1.0.0 │ │ ├── process-nextick-args@1.0.7 │ │ ├── string_decoder@0.10.31 │ │ └── util-deprecate@1.0.2 │ └─┬ redis@2.6.5 │ ├── double-ended-queue@2.1.0-0 │ ├── redis-commands@1.3.1 │ └── redis-parser@2.4.0 ├── async@2.0.1 ├─┬ body-parser@1.15.2 │ ├── bytes@2.4.0 │ ├── content-type@1.0.2 │ ├── debug@2.2.0 │ ├── depd@1.1.0 │ ├─┬ http-errors@1.5.1 │ │ ├── setprototypeof@1.0.2 │ │ └── statuses@1.3.1 │ ├── iconv-lite@0.4.13 │ ├─┬ on-finished@2.3.0 │ │ └── ee-first@1.1.1 │ ├── qs@6.2.0 │ ├─┬ raw-body@2.1.7 │ │ └── unpipe@1.0.0 │ └─┬ type-is@1.6.14 │ ├── media-typer@0.3.0 │ └── mime-types@2.1.14 ├── bower@1.7.9 ├─┬ chalk@1.1.3 │ ├── ansi-styles@2.2.1 │ ├── escape-string-regexp@1.0.5 │ ├─┬ has-ansi@2.0.0 │ │ └── ansi-regex@2.1.1 │ ├── strip-ansi@3.0.1 │ └── supports-color@2.0.0 ├─┬ compression@1.6.2 │ ├─┬ accepts@1.3.3 │ │ └── negotiator@0.6.1 │ ├── bytes@2.3.0 │ ├─┬ compressible@2.0.9 │ │ └── mime-db@1.26.0 │ ├── on-headers@1.0.1 │ └── vary@1.1.0 ├── connect-flash@0.1.1 ├── connect-mongo@1.3.2 ├─┬ cookie-parser@1.4.3 │ ├── cookie@0.3.1 │ └── cookie-signature@1.0.6 ├─┬ coveralls@2.11.16 │ ├─┬ js-yaml@3.6.1 │ │ └─┬ argparse@1.0.9 │ │ └── sprintf-js@1.0.3 │ ├── lcov-parse@0.0.10 │ ├── log-driver@1.2.5 │ ├── minimist@1.2.0 │ └─┬ request@2.79.0 │ ├── aws-sign2@0.6.0 │ ├── aws4@1.6.0 │ ├── caseless@0.11.0 │ ├─┬ combined-stream@1.0.5 │ │ └── delayed-stream@1.0.0 │ ├── extend@3.0.0 │ ├── forever-agent@0.6.1 │ ├─┬ form-data@2.1.2 │ │ └── asynckit@0.4.0 │ ├── har-validator@2.0.6 │ ├─┬ hawk@3.1.3 │ │ ├── boom@2.10.1 │ │ ├── cryptiles@2.0.5 │ │ ├── hoek@2.16.3 │ │ └── sntp@1.0.9 │ ├─┬ http-signature@1.1.1 │ │ ├── assert-plus@0.2.0 │ │ ├─┬ jsprim@1.3.1 │ │ │ ├── extsprintf@1.0.2 │ │ │ ├── json-schema@0.2.3 │ │ │ └── verror@1.3.6 │ │ └─┬ sshpk@1.10.2 │ │ ├── asn1@0.2.3 │ │ ├── assert-plus@1.0.0 │ │ ├── bcrypt-pbkdf@1.0.1 │ │ ├─┬ dashdash@1.14.1 │ │ │ └── assert-plus@1.0.0 │ │ ├── ecc-jsbn@0.1.1 │ │ ├─┬ getpass@0.1.6 │ │ │ └── assert-plus@1.0.0 │ │ ├── jodid25519@1.0.2 │ │ ├── jsbn@0.1.1 │ │ └── tweetnacl@0.14.5 │ ├── is-typedarray@1.0.0 │ ├── json-stringify-safe@5.0.1 │ ├── oauth-sign@0.8.2 │ ├── qs@6.3.1 │ ├── stringstream@0.0.5 │ ├─┬ tough-cookie@2.3.2 │ │ └── punycode@1.4.1 │ ├── tunnel-agent@0.4.3 │ └── uuid@3.0.1 ├── crypto@0.0.3 ├─┬ del@2.2.2 │ ├─┬ globby@5.0.0 │ │ ├── array-union@1.0.2 │ │ ├── arrify@1.0.1 │ │ └── object-assign@4.1.1 │ ├── is-path-cwd@1.0.0 │ ├─┬ is-path-in-cwd@1.0.0 │ │ └── is-path-inside@1.0.0 │ ├── object-assign@4.1.1 │ ├── pify@2.3.0 │ ├─┬ pinkie-promise@2.0.1 │ │ └── pinkie@2.0.4 │ └── rimraf@2.5.4 ├─┬ eslint@2.2.0 │ ├─┬ concat-stream@1.6.0 │ │ ├── readable-stream@2.2.2 │ │ └── typedarray@0.0.6 │ ├─┬ doctrine@1.5.0 │ │ └── isarray@1.0.0 │ ├─┬ es6-map@0.1.4 │ │ ├── d@0.1.1 │ │ ├── es5-ext@0.10.12 │ │ ├── es6-iterator@2.0.0 │ │ ├── es6-set@0.1.4 │ │ ├── es6-symbol@3.1.0 │ │ └── event-emitter@0.3.4 │ ├─┬ escope@3.6.0 │ │ ├── es6-weak-map@2.0.1 │ │ └─┬ esrecurse@4.1.0 │ │ ├── estraverse@4.1.1 │ │ └── object-assign@4.1.1 │ ├─┬ espree@3.4.0 │ │ ├── acorn@4.0.4 │ │ └─┬ acorn-jsx@3.0.1 │ │ └── acorn@3.3.0 │ ├── estraverse@4.2.0 │ ├── estraverse-fb@1.3.1 │ ├── esutils@2.0.2 │ ├─┬ file-entry-cache@1.3.1 │ │ ├─┬ flat-cache@1.2.2 │ │ │ ├── circular-json@0.3.1 │ │ │ └── write@0.2.1 │ │ └── object-assign@4.1.1 │ ├── glob@6.0.4 │ ├── globals@8.18.0 │ ├── ignore@2.2.19 │ ├─┬ inquirer@0.12.0 │ │ ├── ansi-escapes@1.4.0 │ │ ├─┬ cli-cursor@1.0.2 │ │ │ └─┬ restore-cursor@1.0.1 │ │ │ ├── exit-hook@1.1.1 │ │ │ └── onetime@1.1.0 │ │ ├── cli-width@2.1.0 │ │ ├─┬ figures@1.7.0 │ │ │ └── object-assign@4.1.1 │ │ ├─┬ readline2@1.0.1 │ │ │ ├── code-point-at@1.1.0 │ │ │ ├── is-fullwidth-code-point@1.0.0 │ │ │ └── mute-stream@0.0.5 │ │ ├── run-async@0.1.0 │ │ ├── rx-lite@3.1.2 │ │ └── string-width@1.0.2 │ ├─┬ is-my-json-valid@2.15.0 │ │ ├── generate-function@2.0.0 │ │ ├─┬ generate-object-property@1.2.0 │ │ │ └── is-property@1.0.2 │ │ └── jsonpointer@4.0.1 │ ├─┬ is-resolvable@1.0.0 │ │ └── tryit@1.0.3 │ ├─┬ json-stable-stringify@1.0.1 │ │ └── jsonify@0.0.0 │ ├─┬ mkdirp@0.5.1 │ │ └── minimist@0.0.8 │ ├─┬ optionator@0.8.2 │ │ ├── deep-is@0.1.3 │ │ ├── fast-levenshtein@2.0.6 │ │ ├── levn@0.3.0 │ │ ├── prelude-ls@1.1.2 │ │ ├── type-check@0.3.2 │ │ └── wordwrap@1.0.0 │ ├── path-is-absolute@1.0.1 │ ├── path-is-inside@1.0.2 │ ├── pluralize@1.2.1 │ ├── progress@1.1.8 │ ├─┬ require-uncached@1.0.3 │ │ ├─┬ caller-path@0.1.0 │ │ │ └── callsites@0.2.0 │ │ └── resolve-from@1.0.1 │ ├── resolve@1.2.0 │ ├── shelljs@0.5.3 │ ├── strip-json-comments@1.0.4 │ ├─┬ table@3.8.3 │ │ ├─┬ ajv@4.11.3 │ │ │ └── co@4.6.0 │ │ ├── ajv-keywords@1.5.1 │ │ ├── slice-ansi@0.0.4 │ │ └─┬ string-width@2.0.0 │ │ └── is-fullwidth-code-point@2.0.0 │ ├── text-table@0.2.0 │ └─┬ user-home@2.0.0 │ └── os-homedir@1.0.2 ├── eslint-config-airbnb@6.0.2 ├── UNMET PEER DEPENDENCY eslint-plugin-react@^4.0.0 ├─┬ express@4.14.1 │ ├── array-flatten@1.1.1 │ ├── content-disposition@0.5.2 │ ├── encodeurl@1.0.1 │ ├── escape-html@1.0.3 │ ├── etag@1.7.0 │ ├── finalhandler@0.5.1 │ ├── fresh@0.3.0 │ ├── merge-descriptors@1.0.1 │ ├── methods@1.1.2 │ ├── parseurl@1.3.1 │ ├── path-to-regexp@0.1.7 │ ├─┬ proxy-addr@1.1.3 │ │ ├── forwarded@0.1.0 │ │ └── ipaddr.js@1.2.0 │ ├── range-parser@1.2.0 │ ├─┬ send@0.14.2 │ │ ├── destroy@1.0.4 │ │ └── ms@0.7.2 │ ├── serve-static@1.11.2 │ └── utils-merge@1.0.0 ├─┬ express-hbs@1.0.4 │ ├─┬ handlebars@4.0.6 │ │ ├── async@1.5.2 │ │ └─┬ source-map@0.4.4 │ │ └── amdefine@1.0.1 │ ├─┬ js-beautify@1.6.8 │ │ ├─┬ config-chain@1.1.11 │ │ │ └── proto-list@1.2.4 │ │ └─┬ editorconfig@0.13.2 │ │ ├─┬ lru-cache@3.2.0 │ │ │ └── pseudomap@1.0.2 │ │ └── sigmund@1.0.1 │ └─┬ readdirp@2.1.0 │ └── set-immediate-shim@1.0.1 ├─┬ express-session@1.14.2 │ ├── crc@3.4.1 │ └─┬ uid-safe@2.1.3 │ ├── base64-url@1.3.3 │ └── random-bytes@1.0.0 ├─┬ file-stream-rotator@0.0.7 │ └── moment@2.17.1 ├── generate-password@1.2.0 ├─┬ glob@7.1.1 │ ├── fs.realpath@1.0.0 │ ├─┬ inflight@1.0.6 │ │ └── wrappy@1.0.2 │ ├── inherits@2.0.3 │ ├─┬ minimatch@3.0.3 │ │ └─┬ brace-expansion@1.1.6 │ │ ├── balanced-match@0.4.2 │ │ └── concat-map@0.0.1 │ └── once@1.4.0 ├─┬ gulp@3.9.1 │ ├── archy@1.0.0 │ ├── deprecated@0.0.1 │ ├── interpret@1.0.1 │ ├─┬ liftoff@2.3.0 │ │ ├─┬ fined@1.0.2 │ │ │ ├── expand-tilde@1.2.2 │ │ │ ├── lodash.assignwith@4.2.0 │ │ │ ├── lodash.isempty@4.4.0 │ │ │ ├── lodash.pick@4.4.0 │ │ │ └─┬ parse-filepath@1.0.1 │ │ │ ├─┬ is-absolute@0.2.6 │ │ │ │ └─┬ is-relative@0.2.1 │ │ │ │ └─┬ is-unc-path@0.1.2 │ │ │ │ └── unc-path-regex@0.1.2 │ │ │ ├── map-cache@0.2.2 │ │ │ └─┬ path-root@0.1.1 │ │ │ └── path-root-regex@0.1.2 │ │ ├── flagged-respawn@0.3.2 │ │ ├── lodash.isplainobject@4.0.6 │ │ ├── lodash.isstring@4.0.1 │ │ ├── lodash.mapvalues@4.6.0 │ │ └── rechoir@0.6.2 │ ├── minimist@1.2.0 │ ├─┬ orchestrator@0.3.8 │ │ ├─┬ end-of-stream@0.1.5 │ │ │ └── once@1.3.3 │ │ ├── sequencify@0.0.7 │ │ └── stream-consume@0.1.0 │ ├── pretty-hrtime@1.0.3 │ ├── semver@4.3.6 │ ├── tildify@1.2.0 │ ├─┬ v8flags@2.0.11 │ │ └── user-home@1.1.1 │ └─┬ vinyl-fs@0.3.14 │ ├── defaults@1.0.3 │ ├─┬ glob-stream@3.1.18 │ │ ├── glob@4.5.3 │ │ ├─┬ glob2base@0.0.12 │ │ │ └── find-index@0.1.1 │ │ ├── minimatch@2.0.10 │ │ ├── ordered-read-streams@0.1.0 │ │ ├─┬ through2@0.6.5 │ │ │ └─┬ readable-stream@1.0.34 │ │ │ └── isarray@0.0.1 │ │ └── unique-stream@1.0.0 │ ├─┬ glob-watcher@0.0.6 │ │ └─┬ gaze@0.5.2 │ │ └─┬ globule@0.1.0 │ │ ├─┬ glob@3.1.21 │ │ │ ├── graceful-fs@1.2.3 │ │ │ └── inherits@1.0.2 │ │ ├── lodash@1.0.2 │ │ └─┬ minimatch@0.2.14 │ │ └── lru-cache@2.7.3 │ ├─┬ graceful-fs@3.0.11 │ │ └── natives@1.1.0 │ ├─┬ strip-bom@1.0.0 │ │ ├── first-chunk-stream@1.0.0 │ │ └── is-utf8@0.2.1 │ ├─┬ through2@0.6.5 │ │ └─┬ readable-stream@1.0.34 │ │ └── isarray@0.0.1 │ └─┬ vinyl@0.4.6 │ └── clone@0.2.0 ├─┬ gulp-angular-templatecache@2.0.0 │ ├─┬ event-stream@3.3.2 │ │ ├── duplexer@0.1.1 │ │ ├── from@0.1.3 │ │ ├── map-stream@0.1.0 │ │ ├── pause-stream@0.0.11 │ │ ├── split@0.3.3 │ │ └── stream-combiner@0.0.4 │ ├─┬ gulp-concat@2.6.0 │ │ └─┬ through2@0.6.5 │ │ └─┬ readable-stream@1.0.34 │ │ └── isarray@0.0.1 │ ├─┬ gulp-footer@1.0.5 │ │ └── lodash.assign@4.2.0 │ ├── gulp-header@1.8.2 │ ├─┬ gulp-util@3.0.7 │ │ ├── dateformat@1.0.12 │ │ ├── minimist@1.2.0 │ │ └── through2@2.0.3 │ └── jsesc@2.2.0 ├─┬ gulp-autoprefixer@3.1.1 │ ├─┬ autoprefixer@6.7.3 │ │ ├─┬ browserslist@1.7.3 │ │ │ └── electron-to-chromium@1.2.2 │ │ ├── caniuse-db@1.0.30000623 │ │ ├── normalize-range@0.1.2 │ │ ├── num2fraction@1.2.2 │ │ └── postcss-value-parser@3.3.0 │ ├─┬ postcss@5.2.13 │ │ ├── js-base64@2.1.9 │ │ ├── source-map@0.5.6 │ │ └── supports-color@3.2.3 │ ├── through2@2.0.3 │ └─┬ vinyl-sourcemaps-apply@0.2.1 │ └── source-map@0.5.6 ├─┬ gulp-concat@2.6.1 │ ├─┬ concat-with-sourcemaps@1.0.4 │ │ └── source-map@0.5.6 │ └─┬ vinyl@2.0.1 │ ├── clone@1.0.2 │ ├── clone-buffer@1.0.0 │ ├── clone-stats@1.0.0 │ ├── cloneable-readable@1.0.0 │ ├── is-stream@1.1.0 │ ├── remove-trailing-separator@1.0.1 │ └── replace-ext@1.0.0 ├─┬ gulp-csslint@1.0.0 │ ├─┬ csslint@1.0.5 │ │ ├── clone@2.1.0 │ │ └── parserlib@1.1.1 │ └─┬ rcloader@0.2.2 │ ├── lodash.isobject@3.0.2 │ ├── lodash.merge@4.6.0 │ └── rcfinder@0.1.9 ├─┬ gulp-csso@2.0.0 │ └─┬ csso@2.3.1 │ ├── clap@1.1.2 │ └── source-map@0.5.6 ├─┬ gulp-eslint@3.0.1 │ ├── bufferstreams@1.1.1 │ └─┬ eslint@3.15.0 │ ├─┬ babel-code-frame@6.22.0 │ │ └── js-tokens@3.0.1 │ ├─┬ file-entry-cache@2.0.0 │ │ └── object-assign@4.1.1 │ ├── globals@9.15.0 │ ├── ignore@3.2.2 │ ├── imurmurhash@0.1.4 │ ├── natural-compare@1.4.0 │ ├── shelljs@0.7.6 │ ├── strip-bom@3.0.0 │ └── strip-json-comments@2.0.1 ├─┬ gulp-imagemin@3.0.3 │ ├─┬ imagemin@5.2.2 │ │ ├── file-type@3.9.0 │ │ └── promise.pipe@3.0.0 │ ├─┬ imagemin-gifsicle@5.1.0 │ │ ├── gifsicle@3.0.4 │ │ └── is-gif@1.0.0 │ ├─┬ imagemin-jpegtran@5.0.2 │ │ ├── is-jpg@1.0.0 │ │ └── jpegtran-bin@3.2.0 │ ├─┬ imagemin-optipng@5.2.1 │ │ └── optipng-bin@3.1.2 │ ├─┬ imagemin-svgo@5.2.0 │ │ ├─┬ is-svg@2.1.0 │ │ │ └── html-comment-regex@1.1.1 │ │ └─┬ svgo@0.7.2 │ │ ├── coa@1.0.1 │ │ ├── colors@1.1.2 │ │ ├── js-yaml@3.7.0 │ │ ├── sax@1.2.2 │ │ └── whet.extend@0.9.9 │ ├─┬ plur@2.1.2 │ │ └── irregular-plurals@1.2.0 │ ├─┬ pretty-bytes@2.0.1 │ │ ├── get-stdin@4.0.1 │ │ ├─┬ meow@3.7.0 │ │ │ ├─┬ camelcase-keys@2.1.0 │ │ │ │ └── camelcase@2.1.1 │ │ │ ├─┬ loud-rejection@1.6.0 │ │ │ │ └─┬ currently-unhandled@0.4.1 │ │ │ │ └── array-find-index@1.0.2 │ │ │ ├── map-obj@1.0.1 │ │ │ ├── minimist@1.2.0 │ │ │ ├─┬ normalize-package-data@2.3.5 │ │ │ │ ├── hosted-git-info@2.2.0 │ │ │ │ ├─┬ is-builtin-module@1.0.0 │ │ │ │ │ └── builtin-modules@1.1.1 │ │ │ │ └─┬ validate-npm-package-license@3.0.1 │ │ │ │ ├─┬ spdx-correct@1.0.2 │ │ │ │ │ └── spdx-license-ids@1.2.2 │ │ │ │ └── spdx-expression-parse@1.0.4 │ │ │ ├── object-assign@4.1.1 │ │ │ ├─┬ read-pkg-up@1.0.1 │ │ │ │ ├─┬ find-up@1.1.2 │ │ │ │ │ └── path-exists@2.1.0 │ │ │ │ └─┬ read-pkg@1.1.0 │ │ │ │ ├─┬ load-json-file@1.1.0 │ │ │ │ │ └── strip-bom@2.0.0 │ │ │ │ └── path-type@1.1.0 │ │ │ ├─┬ redent@1.0.0 │ │ │ │ ├─┬ indent-string@2.1.0 │ │ │ │ │ └── repeating@2.0.1 │ │ │ │ └── strip-indent@1.0.1 │ │ │ └── trim-newlines@1.0.0 │ │ └── number-is-nan@1.0.1 │ └── through2-concurrent@1.1.1 ├─┬ gulp-istanbul@1.1.1 │ └─┬ istanbul-threshold-checker@0.1.0 │ ├─┬ istanbul@0.3.22 │ │ ├── abbrev@1.0.9 │ │ ├── async@1.5.2 │ │ ├─┬ escodegen@1.7.1 │ │ │ ├── esprima@1.2.5 │ │ │ ├── estraverse@1.9.3 │ │ │ ├─┬ optionator@0.5.0 │ │ │ │ ├── fast-levenshtein@1.0.7 │ │ │ │ ├── levn@0.2.5 │ │ │ │ └── wordwrap@0.0.3 │ │ │ └── source-map@0.2.0 │ │ ├── esprima@2.5.0 │ │ ├─┬ fileset@0.2.1 │ │ │ ├── glob@5.0.15 │ │ │ └── minimatch@2.0.10 │ │ ├── resolve@1.1.7 │ │ ├── supports-color@3.2.3 │ │ └── wordwrap@1.0.0 │ └── lodash@3.6.0 ├─┬ gulp-less@3.1.0 │ ├─┬ accord@0.23.0 │ │ ├── convert-source-map@1.4.0 │ │ ├── fobject@0.0.4 │ │ ├── glob@7.0.3 │ │ ├── indx@0.2.3 │ │ ├── lodash@4.11.2 │ │ └── when@3.7.7 │ ├─┬ less@2.7.2 │ │ ├─┬ errno@0.1.4 │ │ │ └── prr@0.0.0 │ │ ├── image-size@0.5.1 │ │ ├─┬ promise@7.1.1 │ │ │ └── asap@2.0.5 │ │ └── source-map@0.5.6 │ └── object-assign@4.1.1 ├─┬ gulp-load-plugins@1.3.0 │ ├── array-unique@0.2.1 │ ├─┬ fancy-log@1.3.0 │ │ └── time-stamp@1.0.1 │ ├─┬ findup-sync@0.4.3 │ │ ├─┬ detect-file@0.1.0 │ │ │ └── fs-exists-sync@0.1.0 │ │ ├── is-glob@2.0.1 │ │ └─┬ resolve-dir@0.1.1 │ │ └─┬ global-modules@0.2.3 │ │ ├─┬ global-prefix@0.1.5 │ │ │ └─┬ homedir-polyfill@1.0.1 │ │ │ └── parse-passwd@1.0.0 │ │ └── is-windows@0.2.0 │ ├─┬ gulplog@1.0.0 │ │ └── glogg@1.0.0 │ ├─┬ has-gulplog@0.1.0 │ │ └── sparkles@1.0.0 │ └─┬ micromatch@2.3.11 │ ├─┬ arr-diff@2.0.0 │ │ └── arr-flatten@1.0.1 │ ├─┬ braces@1.8.5 │ │ ├─┬ expand-range@1.8.2 │ │ │ └─┬ fill-range@2.2.3 │ │ │ ├── is-number@2.1.0 │ │ │ ├── isobject@2.1.0 │ │ │ ├── randomatic@1.1.6 │ │ │ └── repeat-string@1.6.1 │ │ ├── preserve@0.2.0 │ │ └── repeat-element@1.1.2 │ ├─┬ expand-brackets@0.1.5 │ │ └── is-posix-bracket@0.1.1 │ ├── extglob@0.3.2 │ ├── filename-regex@2.0.0 │ ├── is-extglob@1.0.0 │ ├─┬ kind-of@3.1.0 │ │ └── is-buffer@1.1.4 │ ├── normalize-path@2.0.1 │ ├─┬ object.omit@2.0.1 │ │ ├─┬ for-own@0.1.4 │ │ │ └── for-in@0.1.6 │ │ └── is-extendable@0.1.1 │ ├─┬ parse-glob@3.0.4 │ │ ├── glob-base@0.3.0 │ │ └── is-dotfile@1.0.2 │ └─┬ regex-cache@0.4.3 │ ├── is-equal-shallow@0.1.3 │ └── is-primitive@2.0.0 ├─┬ gulp-mocha@3.0.1 │ ├─┬ req-cwd@1.0.1 │ │ └─┬ req-from@1.0.1 │ │ └── resolve-from@2.0.0 │ ├─┬ temp@0.8.3 │ │ ├── os-tmpdir@1.0.2 │ │ └── rimraf@2.2.8 │ └── through@2.3.8 ├─┬ gulp-ng-annotate@2.0.0 │ ├── merge@1.2.0 │ └─┬ ng-annotate@1.2.1 │ ├── acorn@2.6.4 │ ├── alter@0.2.0 │ ├── convert-source-map@1.1.3 │ ├─┬ ordered-ast-traverse@1.1.1 │ │ └── ordered-esprima-props@1.1.0 │ ├── simple-fmt@0.1.0 │ ├── simple-is@0.2.0 │ ├── source-map@0.5.6 │ ├── stable@0.1.5 │ ├── stringmap@0.2.2 │ ├── stringset@0.2.1 │ └── tryor@0.1.2 ├─┬ gulp-nodemon@2.2.1 │ ├── colors@1.0.3 │ └─┬ nodemon@1.11.0 │ ├── ignore-by-default@1.0.1 │ ├─┬ lodash.defaults@3.1.2 │ │ └─┬ lodash.assign@3.2.0 │ │ └─┬ lodash._createassigner@3.1.1 │ │ └── lodash._bindcallback@3.0.1 │ ├── ps-tree@1.1.0 │ ├─┬ touch@1.0.0 │ │ └── nopt@1.0.10 │ ├── undefsafe@0.0.3 │ └─┬ update-notifier@0.5.0 │ ├─┬ configstore@1.4.0 │ │ ├── object-assign@4.1.1 │ │ ├── uuid@2.0.3 │ │ ├─┬ write-file-atomic@1.3.1 │ │ │ └── slide@1.1.6 │ │ └── xdg-basedir@2.0.0 │ ├── is-npm@1.0.0 │ ├─┬ latest-version@1.0.1 │ │ └─┬ package-json@1.2.0 │ │ ├─┬ got@3.3.1 │ │ │ ├── infinity-agent@2.0.3 │ │ │ ├── nested-error-stacks@1.0.2 │ │ │ ├── prepend-http@1.0.4 │ │ │ └── timed-out@2.0.0 │ │ └── registry-url@3.1.0 │ ├─┬ repeating@1.1.3 │ │ └── is-finite@1.0.2 │ ├── semver-diff@2.1.0 │ └── string-length@1.0.1 ├─┬ gulp-protractor@3.0.0 │ ├── async@1.5.2 │ ├── dargs@4.1.0 │ └─┬ protractor@4.0.14 │ ├─┬ @types/jasmine@2.5.43 │ │ └── typescript@2.1.6 │ ├── @types/node@6.0.63 │ ├── @types/q@0.0.32 │ ├── @types/selenium-webdriver@2.53.37 │ ├── adm-zip@0.4.7 │ ├─┬ jasmine@2.4.1 │ │ ├── exit@0.1.2 │ │ ├─┬ glob@3.2.11 │ │ │ └─┬ minimatch@0.3.0 │ │ │ └── lru-cache@2.7.3 │ │ └── jasmine-core@2.4.1 │ ├── jasminewd2@0.0.10 │ ├── q@1.4.1 │ ├─┬ saucelabs@1.3.0 │ │ └─┬ https-proxy-agent@1.0.0 │ │ └─┬ agent-base@2.0.1 │ │ └── semver@5.0.3 │ ├─┬ selenium-webdriver@2.53.3 │ │ ├── adm-zip@0.4.4 │ │ └─┬ xml2js@0.4.4 │ │ ├── sax@0.6.1 │ │ └── xmlbuilder@8.2.2 │ ├─┬ source-map-support@0.4.11 │ │ └── source-map@0.5.6 │ └─┬ webdriver-manager@10.3.0 │ └── minimist@1.2.0 ├─┬ gulp-refresh@1.1.0 │ ├─┬ chalk@0.5.1 │ │ ├── ansi-styles@1.1.0 │ │ ├─┬ has-ansi@0.1.0 │ │ │ └── ansi-regex@0.2.1 │ │ ├── strip-ansi@0.3.0 │ │ └── supports-color@0.2.0 │ └─┬ mini-lr@0.1.9 │ ├─┬ body-parser@1.14.2 │ │ ├── bytes@2.2.0 │ │ ├── http-errors@1.3.1 │ │ └── qs@5.2.0 │ ├─┬ faye-websocket@0.7.3 │ │ └─┬ websocket-driver@0.6.5 │ │ └── websocket-extensions@0.1.1 │ ├── livereload-js@2.2.2 │ └── qs@2.2.5 ├── gulp-rename@1.2.2 ├─┬ gulp-rev@7.1.2 │ ├── modify-filename@1.1.0 │ ├── object-assign@4.1.1 │ ├── rev-hash@1.0.0 │ ├── rev-path@1.0.0 │ ├─┬ sort-keys@1.1.2 │ │ └── is-plain-obj@1.1.0 │ └─┬ vinyl-file@1.3.0 │ ├── strip-bom@2.0.0 │ ├─┬ strip-bom-stream@1.0.0 │ │ └── strip-bom@2.0.0 │ └── vinyl@1.2.0 ├─┬ gulp-sass@2.3.2 │ ├── lodash.clonedeep@4.5.0 │ └─┬ node-sass@3.13.1 │ ├── async-foreach@0.1.3 │ ├─┬ cross-spawn@3.0.1 │ │ └─┬ lru-cache@4.0.2 │ │ └── yallist@2.0.0 │ ├─┬ gaze@1.1.2 │ │ └── globule@1.1.0 │ ├── in-publish@2.0.0 │ ├── nan@2.5.1 │ ├─┬ node-gyp@3.5.0 │ │ ├── fstream@1.0.10 │ │ └─┬ tar@2.2.1 │ │ └── block-stream@0.0.9 │ ├─┬ npmlog@4.0.2 │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ └── delegates@1.0.0 │ │ ├── console-control-strings@1.1.0 │ │ ├─┬ gauge@2.7.3 │ │ │ ├── aproba@1.1.1 │ │ │ ├── has-unicode@2.0.1 │ │ │ ├── object-assign@4.1.1 │ │ │ └── wide-align@1.1.0 │ │ └── set-blocking@2.0.0 │ └─┬ sass-graph@2.1.2 │ └─┬ yargs@4.8.1 │ ├─┬ cliui@3.2.0 │ │ └── wrap-ansi@2.1.0 │ ├── get-caller-file@1.0.2 │ ├─┬ os-locale@1.4.0 │ │ └─┬ lcid@1.0.0 │ │ └── invert-kv@1.0.0 │ ├── require-directory@2.1.1 │ ├── require-main-filename@1.0.1 │ ├── which-module@1.0.0 │ ├── window-size@0.2.0 │ ├── y18n@3.2.1 │ └─┬ yargs-parser@2.4.1 │ └── camelcase@3.0.0 ├─┬ gulp-uglify@2.0.1 │ ├─┬ make-error-cause@1.2.2 │ │ └── make-error@1.2.1 │ ├─┬ uglify-js@2.7.5 │ │ ├── async@0.2.10 │ │ ├── source-map@0.5.6 │ │ └── uglify-to-browserify@1.0.2 │ └── uglify-save-license@0.4.1 ├─┬ gulp-util@3.0.8 │ ├── array-differ@1.0.0 │ ├── array-uniq@1.0.3 │ ├── beeper@1.1.1 │ ├── dateformat@2.0.0 │ ├── lodash._reescape@3.0.0 │ ├── lodash._reevaluate@3.0.0 │ ├── lodash._reinterpolate@3.0.0 │ ├─┬ lodash.template@3.6.2 │ │ ├── lodash._basecopy@3.0.1 │ │ ├── lodash._basetostring@3.0.1 │ │ ├── lodash._basevalues@3.0.0 │ │ ├── lodash._isiterateecall@3.0.9 │ │ ├─┬ lodash.escape@3.2.0 │ │ │ └── lodash._root@3.0.1 │ │ ├─┬ lodash.keys@3.1.2 │ │ │ ├── lodash._getnative@3.9.1 │ │ │ ├── lodash.isarguments@3.1.0 │ │ │ └── lodash.isarray@3.0.4 │ │ ├── lodash.restparam@3.6.1 │ │ └── lodash.templatesettings@3.1.1 │ ├── minimist@1.2.0 │ ├─┬ multipipe@0.1.2 │ │ └─┬ duplexer2@0.0.2 │ │ └─┬ readable-stream@1.1.14 │ │ └── isarray@0.0.1 │ ├── object-assign@3.0.0 │ ├── replace-ext@0.0.1 │ └─┬ vinyl@0.5.3 │ └── clone-stats@0.0.1 ├─┬ helmet@2.3.0 │ ├─┬ connect@3.4.1 │ │ └── finalhandler@0.4.1 │ ├── dns-prefetch-control@0.1.0 │ ├── dont-sniff-mimetype@1.0.0 │ ├── frameguard@2.0.0 │ ├─┬ helmet-csp@1.2.2 │ │ ├── camelize@1.0.0 │ │ ├─┬ content-security-policy-builder@1.0.0 │ │ │ └── dashify@0.2.2 │ │ ├── lodash.reduce@4.5.0 │ │ └── platform@1.3.1 │ ├── hide-powered-by@1.0.0 │ ├── hpkp@1.2.0 │ ├── hsts@1.0.0 │ ├── ienoopen@1.0.0 │ ├── nocache@1.0.1 │ ├── referrer-policy@1.0.0 │ └── x-xss-protection@1.0.0 ├─┬ imagemin-pngquant@5.0.0 │ ├─┬ exec-buffer@3.1.0 │ │ ├─┬ execa@0.5.1 │ │ │ ├─┬ cross-spawn@4.0.2 │ │ │ │ └── lru-cache@4.0.2 │ │ │ ├─┬ get-stream@2.3.1 │ │ │ │ └── object-assign@4.1.1 │ │ │ ├─┬ npm-run-path@2.0.2 │ │ │ │ └── path-key@2.0.1 │ │ │ ├── signal-exit@3.0.2 │ │ │ └── strip-eof@1.0.0 │ │ ├── p-finally@1.0.0 │ │ └─┬ tempfile@1.1.1 │ │ └── uuid@2.0.3 │ ├── is-png@1.0.0 │ └─┬ pngquant-bin@3.1.1 │ ├─┬ bin-build@2.2.0 │ │ ├── archive-type@3.2.0 │ │ ├─┬ decompress@3.0.0 │ │ │ ├─┬ buffer-to-vinyl@1.1.0 │ │ │ │ ├── uuid@2.0.3 │ │ │ │ └── vinyl@1.2.0 │ │ │ ├─┬ decompress-tar@3.1.0 │ │ │ │ ├── is-tar@1.0.0 │ │ │ │ ├── object-assign@2.1.1 │ │ │ │ ├─┬ strip-dirs@1.1.1 │ │ │ │ │ ├─┬ is-absolute@0.1.7 │ │ │ │ │ │ └── is-relative@0.1.3 │ │ │ │ │ ├── is-natural-number@2.1.1 │ │ │ │ │ ├── minimist@1.2.0 │ │ │ │ │ └── sum-up@1.0.3 │ │ │ │ ├─┬ tar-stream@1.5.2 │ │ │ │ │ ├── bl@1.2.0 │ │ │ │ │ └─┬ end-of-stream@1.1.0 │ │ │ │ │ └── once@1.3.3 │ │ │ │ ├─┬ through2@0.6.5 │ │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ └─┬ vinyl@0.4.6 │ │ │ │ └── clone@0.2.0 │ │ │ ├─┬ decompress-tarbz2@3.1.0 │ │ │ │ ├── is-bzip2@1.0.0 │ │ │ │ ├── object-assign@2.1.1 │ │ │ │ ├─┬ seek-bzip@1.0.5 │ │ │ │ │ └── commander@2.8.1 │ │ │ │ ├─┬ through2@0.6.5 │ │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ └─┬ vinyl@0.4.6 │ │ │ │ └── clone@0.2.0 │ │ │ ├─┬ decompress-targz@3.1.0 │ │ │ │ ├── is-gzip@1.0.0 │ │ │ │ ├── object-assign@2.1.1 │ │ │ │ ├─┬ through2@0.6.5 │ │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ └─┬ vinyl@0.4.6 │ │ │ │ └── clone@0.2.0 │ │ │ ├─┬ decompress-unzip@3.4.0 │ │ │ │ ├── is-zip@1.0.0 │ │ │ │ ├── stat-mode@0.2.2 │ │ │ │ └── vinyl@1.2.0 │ │ │ ├─┬ stream-combiner2@1.1.1 │ │ │ │ └── duplexer2@0.1.4 │ │ │ ├─┬ vinyl-assign@1.2.1 │ │ │ │ └── object-assign@4.1.1 │ │ │ └─┬ vinyl-fs@2.4.4 │ │ │ ├─┬ glob-stream@5.3.5 │ │ │ │ ├── glob@5.0.15 │ │ │ │ ├─┬ glob-parent@3.1.0 │ │ │ │ │ └─┬ is-glob@3.1.0 │ │ │ │ │ └── is-extglob@2.1.1 │ │ │ │ ├── ordered-read-streams@0.3.0 │ │ │ │ ├─┬ through2@0.6.5 │ │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ └── unique-stream@2.2.1 │ │ │ ├── object-assign@4.1.1 │ │ │ ├── strip-bom@2.0.0 │ │ │ └── vinyl@1.2.0 │ │ ├─┬ download@4.4.3 │ │ │ ├─┬ caw@1.2.0 │ │ │ │ ├── get-proxy@1.1.0 │ │ │ │ └── is-obj@1.0.1 │ │ │ ├─┬ filenamify@1.2.1 │ │ │ │ ├── filename-reserved-regex@1.0.0 │ │ │ │ ├── strip-outer@1.0.0 │ │ │ │ └── trim-repeated@1.0.0 │ │ │ ├─┬ got@5.7.1 │ │ │ │ ├─┬ create-error-class@3.0.2 │ │ │ │ │ └── capture-stack-trace@1.0.0 │ │ │ │ ├── duplexer2@0.1.4 │ │ │ │ ├── is-redirect@1.0.0 │ │ │ │ ├── is-retry-allowed@1.1.0 │ │ │ │ ├── lowercase-keys@1.0.0 │ │ │ │ ├── node-status-codes@1.0.0 │ │ │ │ ├── object-assign@4.1.1 │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └─┬ error-ex@1.3.0 │ │ │ │ │ └── is-arrayish@0.2.1 │ │ │ │ ├── timed-out@3.1.3 │ │ │ │ ├── unzip-response@1.0.2 │ │ │ │ └── url-parse-lax@1.0.0 │ │ │ ├── gulp-decompress@1.2.0 │ │ │ ├── is-url@1.2.2 │ │ │ ├── object-assign@4.1.1 │ │ │ ├── read-all-stream@3.1.0 │ │ │ ├── vinyl@1.2.0 │ │ │ ├─┬ vinyl-fs@2.4.4 │ │ │ │ ├─┬ glob-stream@5.3.5 │ │ │ │ │ ├── glob@5.0.15 │ │ │ │ │ ├─┬ glob-parent@3.1.0 │ │ │ │ │ │ └─┬ is-glob@3.1.0 │ │ │ │ │ │ └── is-extglob@2.1.1 │ │ │ │ │ ├── ordered-read-streams@0.3.0 │ │ │ │ │ ├─┬ through2@0.6.5 │ │ │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ │ └── unique-stream@2.2.1 │ │ │ │ └── strip-bom@2.0.0 │ │ │ └─┬ ware@1.3.0 │ │ │ └─┬ wrap-fn@0.1.5 │ │ │ └── co@3.1.0 │ │ ├─┬ exec-series@1.0.3 │ │ │ ├── async-each-series@1.1.0 │ │ │ └── object-assign@4.1.1 │ │ └─┬ url-regex@3.2.0 │ │ └── ip-regex@1.0.3 │ ├─┬ bin-wrapper@3.0.2 │ │ ├─┬ bin-check@2.0.0 │ │ │ └── executable@1.1.0 │ │ ├─┬ bin-version-check@2.1.0 │ │ │ ├─┬ bin-version@1.0.4 │ │ │ │ └─┬ find-versions@1.2.1 │ │ │ │ └── semver-regex@1.0.0 │ │ │ ├── minimist@1.2.0 │ │ │ ├── semver@4.3.6 │ │ │ └── semver-truncate@1.1.2 │ │ ├── each-async@1.1.1 │ │ ├── lazy-req@1.1.0 │ │ └── os-filter-obj@1.0.3 │ └─┬ logalot@2.1.0 │ └─┬ squeak@1.3.0 │ ├── console-stream@0.1.1 │ └─┬ lpad-align@1.1.0 │ ├── longest@1.0.1 │ └── lpad@2.0.1 ├─┬ istanbul@0.4.5 │ ├── abbrev@1.0.9 │ ├── async@1.5.2 │ ├─┬ escodegen@1.8.1 │ │ ├── estraverse@1.9.3 │ │ └── source-map@0.2.0 │ ├── esprima@2.7.3 │ ├── glob@5.0.15 │ ├─┬ nopt@3.0.6 │ │ └── abbrev@1.1.0 │ ├── resolve@1.1.7 │ ├─┬ supports-color@3.2.3 │ │ └── has-flag@1.0.0 │ ├─┬ which@1.2.12 │ │ └── isexe@1.1.2 │ └── wordwrap@1.0.0 ├── jasmine-core@2.5.2 ├─┬ karma@1.3.0 │ ├─┬ chokidar@1.6.1 │ │ ├── anymatch@1.3.0 │ │ ├── async-each@1.0.1 │ │ ├── glob-parent@2.0.0 │ │ └─┬ is-binary-path@1.0.1 │ │ └── binary-extensions@1.8.0 │ ├── colors@1.1.2 │ ├── combine-lists@1.0.1 │ ├── core-js@2.4.1 │ ├── di@0.0.1 │ ├─┬ dom-serialize@2.2.1 │ │ ├── custom-event@1.0.1 │ │ ├── ent@2.2.0 │ │ └── void-elements@2.0.1 │ ├─┬ expand-braces@0.1.2 │ │ ├── array-slice@0.2.3 │ │ └─┬ braces@0.1.5 │ │ └─┬ expand-range@0.1.1 │ │ ├── is-number@0.1.1 │ │ └── repeat-string@0.2.2 │ ├── graceful-fs@4.1.11 │ ├─┬ http-proxy@1.16.2 │ │ ├── eventemitter3@1.2.0 │ │ └── requires-port@1.0.0 │ ├── isbinaryfile@3.0.2 │ ├── lodash@3.10.1 │ ├─┬ log4js@0.6.38 │ │ ├─┬ readable-stream@1.0.34 │ │ │ └── isarray@0.0.1 │ │ └── semver@4.3.6 │ ├── mime@1.3.4 │ ├─┬ optimist@0.6.1 │ │ ├── minimist@0.0.10 │ │ └── wordwrap@0.0.3 │ ├── qjobs@1.1.5 │ ├─┬ socket.io@1.4.7 │ │ ├─┬ engine.io@1.6.10 │ │ │ ├─┬ accepts@1.1.4 │ │ │ │ ├─┬ mime-types@2.0.14 │ │ │ │ │ └── mime-db@1.12.0 │ │ │ │ └── negotiator@0.4.9 │ │ │ ├── base64id@0.1.0 │ │ │ ├─┬ engine.io-parser@1.2.4 │ │ │ │ ├── after@0.8.1 │ │ │ │ ├── base64-arraybuffer@0.1.2 │ │ │ │ ├── has-binary@0.1.6 │ │ │ │ └── utf8@2.1.0 │ │ │ └── ws@1.0.1 │ │ ├─┬ socket.io-adapter@0.4.0 │ │ │ └─┬ socket.io-parser@2.2.2 │ │ │ ├── debug@0.7.4 │ │ │ └── json3@3.2.6 │ │ ├─┬ socket.io-client@1.4.6 │ │ │ ├── component-emitter@1.2.0 │ │ │ ├─┬ engine.io-client@1.6.9 │ │ │ │ ├── parsejson@0.0.1 │ │ │ │ ├── parseqs@0.0.2 │ │ │ │ └── xmlhttprequest-ssl@1.5.1 │ │ │ └── parseuri@0.0.4 │ │ └─┬ socket.io-parser@2.2.6 │ │ ├── benchmark@1.0.0 │ │ ├── isarray@0.0.1 │ │ └── json3@3.3.2 │ ├── source-map@0.5.6 │ ├── tmp@0.0.28 │ └─┬ useragent@2.1.12 │ ├── lru-cache@2.2.4 │ └── tmp@0.0.24 ├─┬ karma-chrome-launcher@2.0.0 │ └─┬ fs-access@1.0.1 │ └── null-check@1.0.0 ├─┬ karma-coverage@1.1.1 │ ├── dateformat@1.0.12 │ ├── lodash@3.10.1 │ └── source-map@0.5.6 ├── karma-firefox-launcher@1.0.0 ├── karma-jasmine@1.0.2 ├── karma-ng-html2js-preprocessor@1.0.0 ├── karma-phantomjs-launcher@1.0.2 ├─┬ lcov-result-merger@1.2.0 │ ├── vinyl@1.2.0 │ └─┬ vinyl-fs@2.4.4 │ ├─┬ duplexify@3.5.0 │ │ ├─┬ end-of-stream@1.0.0 │ │ │ └── once@1.3.3 │ │ └── stream-shift@1.0.0 │ ├─┬ glob-stream@5.3.5 │ │ ├── glob@5.0.15 │ │ ├─┬ glob-parent@3.1.0 │ │ │ ├─┬ is-glob@3.1.0 │ │ │ │ └── is-extglob@2.1.1 │ │ │ └── path-dirname@1.0.2 │ │ ├── ordered-read-streams@0.3.0 │ │ ├─┬ through2@0.6.5 │ │ │ └─┬ readable-stream@1.0.34 │ │ │ └── isarray@0.0.1 │ │ ├─┬ to-absolute-glob@0.1.1 │ │ │ └── extend-shallow@2.0.1 │ │ └── unique-stream@2.2.1 │ ├─┬ gulp-sourcemaps@1.6.0 │ │ ├── strip-bom@2.0.0 │ │ └── vinyl@1.2.0 │ ├── is-valid-glob@0.3.0 │ ├── lazystream@1.0.0 │ ├── lodash.isequal@4.5.0 │ ├── merge-stream@1.0.1 │ ├── object-assign@4.1.1 │ ├── strip-bom@2.0.0 │ ├── through2-filter@2.0.0 │ └── vali-date@1.0.0 ├── lodash@4.16.6 ├─┬ lusca@1.4.1 │ └── core-util-is@1.0.2 ├─┬ method-override@2.3.7 │ └─┬ debug@2.3.3 │ └── ms@0.7.2 ├─┬ mocha@3.1.2 │ ├── browser-stdout@1.3.0 │ ├─┬ commander@2.9.0 │ │ └── graceful-readlink@1.0.1 │ ├── diff@1.4.0 │ ├── glob@7.0.5 │ ├── growl@1.9.2 │ ├── json3@3.3.2 │ ├─┬ lodash.create@3.1.1 │ │ ├── lodash._baseassign@3.2.0 │ │ └── lodash._basecreate@3.0.3 │ └── supports-color@3.1.2 ├─┬ mock-fs@3.11.0 │ ├── rewire@2.5.2 │ └── semver@5.1.1 ├─┬ mongoose@4.6.8 │ ├── async@2.1.2 │ ├── bson@0.5.7 │ ├── hooks-fixed@1.2.0 │ ├── kareem@1.1.3 │ ├─┬ mongodb@2.2.11 │ │ └── mongodb-core@2.0.13 │ ├── mpath@0.2.1 │ ├── mpromise@0.5.5 │ ├─┬ mquery@2.0.0 │ │ ├── bluebird@2.10.2 │ │ └── sliced@0.0.5 │ ├── ms@0.7.1 │ ├── muri@1.1.1 │ ├── regexp-clone@0.0.1 │ └── sliced@1.0.1 ├─┬ morgan@1.7.0 │ └── basic-auth@1.0.4 ├─┬ multer@1.2.1 │ ├── append-field@0.1.0 │ ├─┬ busboy@0.2.14 │ │ ├─┬ dicer@0.2.5 │ │ │ ├─┬ readable-stream@1.1.14 │ │ │ │ └── isarray@0.0.1 │ │ │ └── streamsearch@0.1.2 │ │ └─┬ readable-stream@1.1.14 │ │ └── isarray@0.0.1 │ └── xtend@4.0.1 ├─┬ node-inspector@0.12.8 │ ├── async@0.9.2 │ ├─┬ biased-opener@0.2.8 │ │ ├─┬ browser-launcher2@0.4.6 │ │ │ ├── headless@0.1.7 │ │ │ ├── lodash@2.4.2 │ │ │ ├─┬ plist@1.2.0 │ │ │ │ ├── base64-js@0.0.8 │ │ │ │ └─┬ xmlbuilder@4.0.0 │ │ │ │ └── lodash@3.10.1 │ │ │ ├── rimraf@2.2.8 │ │ │ ├── uid@0.0.2 │ │ │ └─┬ win-detect-browsers@1.0.2 │ │ │ └── yargs@1.3.3 │ │ ├── minimist@1.2.0 │ │ └─┬ x-default-browser@0.3.1 │ │ └─┬ default-browser-id@1.0.4 │ │ └─┬ bplist-parser@0.1.1 │ │ └── big-integer@1.6.17 │ ├── glob@5.0.15 │ ├─┬ rc@1.1.6 │ │ ├── deep-extend@0.4.1 │ │ ├── ini@1.3.4 │ │ └── minimist@1.2.0 │ ├── semver@4.3.6 │ ├─┬ strong-data-uri@1.0.4 │ │ └── truncate@1.0.5 │ ├─┬ v8-debug@0.7.7 │ │ └─┬ node-pre-gyp@0.6.33 │ │ └─┬ tar-pack@3.3.0 │ │ ├── fstream-ignore@1.0.5 │ │ ├── once@1.3.3 │ │ └── uid-number@0.0.6 │ ├── v8-profiler@5.6.5 │ ├─┬ ws@1.1.1 │ │ ├── options@0.0.6 │ │ └── ultron@1.0.2 │ └─┬ yargs@3.10.0 │ ├── camelcase@1.2.1 │ ├─┬ cliui@2.1.0 │ │ ├─┬ center-align@0.1.3 │ │ │ ├── align-text@0.1.4 │ │ │ └── lazy-cache@1.0.4 │ │ ├── right-align@0.1.3 │ │ └── wordwrap@0.0.2 │ ├── decamelize@1.2.0 │ └── window-size@0.1.0 ├─┬ nodemailer@2.6.4 │ ├─┬ libmime@2.1.0 │ │ ├── libbase64@0.1.0 │ │ └── libqp@1.1.0 │ ├─┬ mailcomposer@3.12.0 │ │ └─┬ buildmail@3.10.0 │ │ └── addressparser@1.0.1 │ ├─┬ nodemailer-direct-transport@3.3.2 │ │ └─┬ smtp-connection@2.12.0 │ │ └─┬ httpntlm@1.6.1 │ │ ├── httpreq@0.4.22 │ │ └── underscore@1.7.0 │ ├─┬ nodemailer-shared@1.1.0 │ │ └── nodemailer-fetch@1.6.0 │ ├─┬ nodemailer-smtp-pool@2.8.2 │ │ └── nodemailer-wellknown@0.1.10 │ ├── nodemailer-smtp-transport@2.7.2 │ └─┬ socks@1.1.9 │ ├── ip@1.1.4 │ └── smart-buffer@1.1.15 ├── owasp-password-strength-test@1.3.0 ├─┬ passport@0.3.2 │ ├── passport-strategy@1.0.0 │ └── pause@0.0.1 ├─┬ passport-facebook@2.1.1 │ └─┬ passport-oauth2@1.4.0 │ ├── oauth@0.9.15 │ └── uid2@0.0.3 ├── passport-github@1.1.0 ├─┬ passport-google-oauth@1.0.0 │ ├── passport-google-oauth1@1.0.0 │ └── passport-google-oauth20@1.0.0 ├─┬ passport-linkedin@1.0.0 │ └── passport-oauth1@1.1.0 ├── passport-local@1.0.0 ├─┬ passport-paypal-openidconnect@0.1.1 │ ├─┬ passport-openidconnect@0.0.1 │ │ └── passport@0.1.18 │ └── pkginfo@0.2.3 ├─┬ passport-twitter@1.0.4 │ └─┬ xtraverse@0.1.0 │ └── xmldom@0.1.27 ├─┬ phantomjs-prebuilt@2.1.14 │ ├── es6-promise@4.0.5 │ ├─┬ extract-zip@1.5.0 │ │ ├─┬ concat-stream@1.5.0 │ │ │ └── readable-stream@2.0.6 │ │ ├── debug@0.7.4 │ │ ├─┬ mkdirp@0.5.0 │ │ │ └── minimist@0.0.8 │ │ └─┬ yauzl@2.4.1 │ │ └─┬ fd-slicer@1.0.1 │ │ └── pend@1.2.0 │ ├─┬ fs-extra@1.0.0 │ │ ├── jsonfile@2.4.0 │ │ └── klaw@1.3.1 │ ├── hasha@2.2.0 │ ├── kew@0.7.0 │ └─┬ request-progress@2.0.1 │ └── throttleit@1.0.0 ├── run-sequence@1.2.2 ├── semver@5.3.0 ├─┬ serve-favicon@2.3.2 │ └── ms@0.7.2 ├─┬ should@11.1.2 │ ├── should-equal@1.0.1 │ ├── should-format@3.0.3 │ ├── should-type@1.4.0 │ ├── should-type-adaptors@1.0.1 │ └── should-util@1.0.0 ├─┬ socket.io@1.7.2 │ ├─┬ debug@2.3.3 │ │ └── ms@0.7.2 │ ├─┬ engine.io@1.8.2 │ │ ├── base64id@1.0.0 │ │ ├─┬ debug@2.3.3 │ │ │ └── ms@0.7.2 │ │ └─┬ engine.io-parser@1.3.2 │ │ ├── after@0.8.2 │ │ ├── arraybuffer.slice@0.0.6 │ │ ├── base64-arraybuffer@0.1.5 │ │ ├── blob@0.0.4 │ │ └── wtf-8@1.0.0 │ ├─┬ has-binary@0.1.7 │ │ └── isarray@0.0.1 │ ├── object-assign@4.1.0 │ ├─┬ socket.io-adapter@0.5.0 │ │ └─┬ debug@2.3.3 │ │ └── ms@0.7.2 │ ├─┬ socket.io-client@1.7.2 │ │ ├── backo2@1.0.2 │ │ ├── component-bind@1.0.0 │ │ ├── component-emitter@1.2.1 │ │ ├─┬ debug@2.3.3 │ │ │ └── ms@0.7.2 │ │ ├─┬ engine.io-client@1.8.2 │ │ │ ├── component-emitter@1.2.1 │ │ │ ├── component-inherit@0.0.3 │ │ │ ├─┬ debug@2.3.3 │ │ │ │ └── ms@0.7.2 │ │ │ ├── has-cors@1.1.0 │ │ │ ├── parsejson@0.0.3 │ │ │ ├── parseqs@0.0.5 │ │ │ ├── xmlhttprequest-ssl@1.5.3 │ │ │ └── yeast@0.1.2 │ │ ├── indexof@0.0.1 │ │ ├── object-component@0.0.3 │ │ ├─┬ parseuri@0.0.5 │ │ │ └─┬ better-assert@1.0.2 │ │ │ └── callsite@1.0.0 │ │ └── to-array@0.1.4 │ └─┬ socket.io-parser@2.3.1 │ ├── component-emitter@1.1.2 │ └── isarray@0.0.1 ├─┬ supertest@2.0.1 │ └─┬ superagent@2.3.0 │ ├── component-emitter@1.2.1 │ ├── cookiejar@2.1.0 │ ├─┬ form-data@1.0.0-rc4 │ │ └── async@1.5.2 │ └── formidable@1.1.1 ├── validator@6.0.0 ├─┬ winston@2.3.1 │ ├── async@1.0.0 │ ├── cycle@1.0.3 │ ├── eyes@0.1.8 │ ├── isstream@0.1.2 │ └── stack-trace@0.0.9 └─┬ wiredep@4.0.0 ├─┬ bower-config@1.4.0 │ ├── mout@1.0.0 │ ├── osenv@0.1.4 │ └── untildify@2.1.0 ├── propprop@0.3.1 └─┬ wiredep-cli@0.1.0 └── minimist@1.2.0 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.0.17: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) npm WARN eslint-config-airbnb@6.0.2 requires a peer of eslint-plugin-react@^4.0.0 but none was installed. |
Once all dependencies are installed, run the following command to install all the front-end modules (angularjs) needed for the application.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ sudo bower --allow-root --config.interactive=false install [sudo] password for teddy: bower not-cached https://github.com/alexcrack/angular-ui-notification.git#~0.2.0 bower resolve https://github.com/alexcrack/angular-ui-notification.git#~0.2.0 bower not-cached https://github.com/viaforensics/owasp-password-strength-test.git#~1.3.0 bower resolve https://github.com/viaforensics/owasp-password-strength-test.git#~1.3.0 bower not-cached https://github.com/twbs/bootstrap.git#~3.3.6 bower resolve https://github.com/twbs/bootstrap.git#~3.3.6 bower not-cached https://github.com/angular-ui/angular-ui-router-bower.git#~0.2.18 bower resolve https://github.com/angular-ui/angular-ui-router-bower.git#~0.2.18 bower not-cached https://github.com/angular/bower-angular-messages.git#~1.5.0 bower resolve https://github.com/angular/bower-angular-messages.git#~1.5.0 bower not-cached https://github.com/danialfarid/angular-file-upload-bower.git#~12.1.0 bower resolve https://github.com/danialfarid/angular-file-upload-bower.git#~12.1.0 bower not-cached https://github.com/angular/bower-angular.git#~1.5.0 bower resolve https://github.com/angular/bower-angular.git#~1.5.0 bower not-cached https://github.com/angular/bower-angular-mocks.git#~1.5.0 bower resolve https://github.com/angular/bower-angular-mocks.git#~1.5.0 bower not-cached https://github.com/angular/bower-angular-resource.git#~1.5.0 bower resolve https://github.com/angular/bower-angular-resource.git#~1.5.0 bower not-cached https://github.com/angular/bower-angular-animate.git#~1.5.0 bower resolve https://github.com/angular/bower-angular-animate.git#~1.5.0 bower not-cached https://github.com/angular-ui/bootstrap-bower.git#~1.2.1 bower resolve https://github.com/angular-ui/bootstrap-bower.git#~1.2.1 bower download https://github.com/viaforensics/owasp-password-strength-test/archive/1.3.0.tar.gz bower download https://github.com/angular-ui/angular-ui-router-bower/archive/0.2.18.tar.gz bower download https://github.com/alexcrack/angular-ui-notification/archive/v0.2.0.tar.gz bower download https://github.com/angular/bower-angular-messages/archive/v1.5.11.tar.gz bower download https://github.com/danialfarid/angular-file-upload-bower/archive/12.1.0.tar.gz bower download https://github.com/twbs/bootstrap/archive/v3.3.7.tar.gz bower download https://github.com/angular/bower-angular/archive/v1.5.11.tar.gz bower download https://github.com/angular-ui/bootstrap-bower/archive/1.2.5.tar.gz bower extract angular-ui-notification#~0.2.0 archive.tar.gz bower extract angular-ui-router#~0.2.18 archive.tar.gz bower download https://github.com/angular/bower-angular-mocks/archive/v1.5.11.tar.gz bower download https://github.com/angular/bower-angular-animate/archive/v1.5.11.tar.gz bower download https://github.com/angular/bower-angular-resource/archive/v1.5.11.tar.gz bower extract owasp-password-strength-test#~1.3.0 archive.tar.gz bower extract angular-messages#~1.5.0 archive.tar.gz bower resolved https://github.com/angular/bower-angular-messages.git#1.5.11 bower resolved https://github.com/viaforensics/owasp-password-strength-test.git#1.3.0 bower resolved https://github.com/angular-ui/angular-ui-router-bower.git#0.2.18 bower not-cached https://github.com/angular/bower-angular.git#^1.0.8 bower resolve https://github.com/angular/bower-angular.git#^1.0.8 bower download https://github.com/angular/bower-angular/archive/v1.6.2.tar.gz bower mismatch Version declared in the json (0.1.0) is different than the resolved one (0.2.0) bower resolved https://github.com/alexcrack/angular-ui-notification.git#0.2.0 bower extract ng-file-upload#~12.1.0 archive.tar.gz bower extract angular-mocks#~1.5.0 archive.tar.gz bower resolved https://github.com/danialfarid/angular-file-upload-bower.git#12.1.0 bower not-cached https://github.com/angular/bower-angular.git#>1.2.0 bower resolve https://github.com/angular/bower-angular.git#>1.2.0 bower download https://github.com/angular/bower-angular/archive/v1.6.2.tar.gz bower extract angular-resource#~1.5.0 archive.tar.gz bower resolved https://github.com/angular/bower-angular-mocks.git#1.5.11 bower resolved https://github.com/angular/bower-angular-resource.git#1.5.11 bower extract angular-animate#~1.5.0 archive.tar.gz bower extract angular-bootstrap#~1.2.1 archive.tar.gz bower resolved https://github.com/angular/bower-angular-animate.git#1.5.11 bower resolved https://github.com/angular-ui/bootstrap-bower.git#1.2.5 bower not-cached https://github.com/angular/bower-angular.git#>=1.4.0 bower resolve https://github.com/angular/bower-angular.git#>=1.4.0 bower download https://github.com/angular/bower-angular/archive/v1.6.2.tar.gz bower extract angular#^1.0.8 archive.tar.gz bower resolved https://github.com/angular/bower-angular.git#1.6.2 bower extract angular#~1.5.0 archive.tar.gz bower resolved https://github.com/angular/bower-angular.git#1.5.11 bower progress bootstrap#~3.3.6 received 1.0MB of 4.0MB downloaded, 25% bower progress bootstrap#~3.3.6 received 1.1MB of 4.0MB downloaded, 28% bower progress bootstrap#~3.3.6 received 1.2MB of 4.0MB downloaded, 31% bower progress bootstrap#~3.3.6 received 1.3MB of 4.0MB downloaded, 34% bower extract angular#>1.2.0 archive.tar.gz bower resolved https://github.com/angular/bower-angular.git#1.6.2 bower progress bootstrap#~3.3.6 received 1.4MB of 4.0MB downloaded, 36% bower extract angular#>=1.4.0 archive.tar.gz bower resolved https://github.com/angular/bower-angular.git#1.6.2 bower progress bootstrap#~3.3.6 received 1.6MB of 4.0MB downloaded, 39% bower progress bootstrap#~3.3.6 received 1.7MB of 4.0MB downloaded, 42% bower progress bootstrap#~3.3.6 received 1.8MB of 4.0MB downloaded, 45% bower progress bootstrap#~3.3.6 received 1.9MB of 4.0MB downloaded, 48% bower progress bootstrap#~3.3.6 received 2.1MB of 4.0MB downloaded, 52% bower progress bootstrap#~3.3.6 received 2.2MB of 4.0MB downloaded, 55% bower progress bootstrap#~3.3.6 received 2.3MB of 4.0MB downloaded, 59% bower progress bootstrap#~3.3.6 received 2.5MB of 4.0MB downloaded, 63% bower progress bootstrap#~3.3.6 received 2.7MB of 4.0MB downloaded, 67% bower progress bootstrap#~3.3.6 received 2.8MB of 4.0MB downloaded, 70% bower progress bootstrap#~3.3.6 received 3.0MB of 4.0MB downloaded, 74% bower progress bootstrap#~3.3.6 received 3.1MB of 4.0MB downloaded, 77% bower progress bootstrap#~3.3.6 received 3.2MB of 4.0MB downloaded, 80% bower progress bootstrap#~3.3.6 received 3.3MB of 4.0MB downloaded, 83% bower progress bootstrap#~3.3.6 received 3.5MB of 4.0MB downloaded, 87% bower progress bootstrap#~3.3.6 received 3.6MB of 4.0MB downloaded, 90% bower progress bootstrap#~3.3.6 received 3.7MB of 4.0MB downloaded, 93% bower progress bootstrap#~3.3.6 received 3.9MB of 4.0MB downloaded, 97% bower extract bootstrap#~3.3.6 archive.tar.gz bower resolved https://github.com/twbs/bootstrap.git#3.3.7 bower cached https://github.com/jquery/jquery-dist.git#3.1.1 bower validate 3.1.1 against https://github.com/jquery/jquery-dist.git#1.9.1 - 3 bower install angular-messages#1.5.11 bower install owasp-password-strength-test#1.3.0 bower install angular-ui-router#0.2.18 bower install angular-ui-notification#0.2.0 bower install ng-file-upload#12.1.0 bower install angular-mocks#1.5.11 bower install angular-resource#1.5.11 bower install angular-animate#1.5.11 bower install angular-bootstrap#1.2.5 bower install angular#1.5.11 bower install bootstrap#3.3.7 bower install jquery#3.1.1 angular-messages#1.5.11 public/lib/angular-messages └── angular#1.5.11 owasp-password-strength-test#1.3.0 public/lib/owasp-password-strength-test angular-ui-router#0.2.18 public/lib/angular-ui-router └── angular#1.5.11 angular-ui-notification#0.2.0 public/lib/angular-ui-notification ng-file-upload#12.1.0 public/lib/ng-file-upload └── angular#1.5.11 angular-mocks#1.5.11 public/lib/angular-mocks └── angular#1.5.11 angular-resource#1.5.11 public/lib/angular-resource └── angular#1.5.11 angular-animate#1.5.11 public/lib/angular-animate └── angular#1.5.11 angular-bootstrap#1.2.5 public/lib/angular-bootstrap └── angular#1.5.11 angular#1.5.11 public/lib/angular bootstrap#3.3.7 public/lib/bootstrap └── jquery#3.1.1 jquery#3.1.1 public/lib/jquery |
THERE IS SOME CONFUSION WHEN I TRIED TO RUN ‘grunt’ BECAUSE I ALWAYS GOT THIS MESSAGES
|
1 2 3 4 5 6 7 8 9 10 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ grunt grunt-cli: The grunt command line interface. (v0.1.13) Fatal error: Unable to find local grunt. If you're seeing this message, either a Gruntfile wasn't found or grunt hasn't been installed locally to your project. For more information about installing and configuring grunt, please see the Getting Started guide: http://gruntjs.com/getting-started |
I TRIED TO FIND THE SOLUTION ON THE INTERNET (STACKOVERFLOWS: http://stackoverflow.com/questions/13925916/fatal-error-unable-to-find-local-grunt?rq=1, http://stackoverflow.com/questions/15483735/fatal-error-unable-to-find-local-grunt-when-running-grunt-command?noredirect=1&lq=1, http://stackoverflow.com/questions/41989435/fatal-error-unable-to-find-local-grunt-despite-grunt-installed-locally) OR https://github.com/gruntjs/grunt-cli/issues/101, I ALSO DID THID
|
1 |
npm install grunt --save-dev |
or did this ‘npm init’
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ npm init This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults. See `npm help json` for definitive documentation on these fields and exactly what they do. Use `npm install <pkg> --save` afterwards to install a package and save it as a dependency in the package.json file. Press ^C at any time to quit. name: (meanjs) version: (0.5.0) entry point: (.eslintrc.js) keywords: test license: (MIT) About to write to /home/teddy/Documents/node/meanjs/package.json: { "name": "meanjs", "description": "Full-Stack JavaScript with MongoDB, Express, AngularJS, and Node.js.", "version": "0.5.0", "meanjs-version": "0.5.0", "private": false, "author": "https://github.com/meanjs/mean/graphs/contributors", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/meanjs/mean.git" }, "engines": { "node": ">=4.6.0", "npm": ">=3.10.8" }, "scripts": { "update": "npm update && npm prune && bower install --allow-root && bower prune --allow-root", "clean": "rm -rf node_modules/ public/lib/", "reinstall": "npm cache clean && npm run clean && npm install", "start": "gulp", "start:prod": "gulp prod", "start:debug": "node-debug --web-host 0.0.0.0 server.js & gulp debug", "gulp": "gulp", "lint": "gulp lint", "test": "gulp test", "test:server": "gulp test:server", "test:server:watch": "gulp test:server:watch", "test:client": "gulp test:client", "test:e2e": "gulp test:e2e", "test:coverage": "gulp test:coverage", "postinstall": "bower install --allow-root && bower prune --allow-root", "generate-ssl-certs": "scripts/generate-ssl-certs.sh" }, "dependencies": { "acl": "~0.4.9", "async": "~2.0.1", "body-parser": "~1.15.0", "bower": "~1.7.7", "chalk": "~1.1.1", "compression": "~1.6.1", "connect-flash": "~0.1.1", "connect-mongo": "~1.3.2", "cookie-parser": "~1.4.1", "crypto": "0.0.3", "express": "~4.14.0", "express-hbs": "^1.0.2", "express-session": "~1.14.1", "file-stream-rotator": "~0.0.6", "generate-password": "~1.2.0", "glob": "~7.1.0", "helmet": "~2.3.0", "jasmine-core": "~2.5.0", "lodash": "~4.16.2", "lusca": "~1.4.1", "method-override": "~2.3.5", "mocha": "~3.1.0", "mongoose": "~4.6.2", "morgan": "~1.7.0", "multer": "~1.2.0", "nodemailer": "~2.6.4", "owasp-password-strength-test": "~1.3.0", "passport": "~0.3.2", "passport-facebook": "~2.1.0", "passport-github": "~1.1.0", "passport-google-oauth": "~1.0.0", "passport-linkedin": "~1.0.0", "passport-local": "~1.0.0", "passport-paypal-openidconnect": "~0.1.1", "passport-twitter": "~1.0.4", "phantomjs-prebuilt": "~2.1.4", "serve-favicon": "~2.3.0", "socket.io": "^1.4.8", "validator": "~6.0.0", "winston": "^2.2.0", "wiredep": "~4.0.0" }, "devDependencies": { "coveralls": "~2.11.6", "del": "^2.2.2", "eslint": "~2.2.0", "eslint-config-airbnb": "~6.0.2", "grunt": "^1.0.1", "gulp": "~3.9.1", "gulp-angular-templatecache": "~2.0.0", "gulp-autoprefixer": "~3.1.0", "gulp-concat": "~2.6.0", "gulp-csslint": "~1.0.0", "gulp-csso": "~2.0.0", "gulp-eslint": "~3.0.1", "gulp-imagemin": "~3.0.3", "gulp-istanbul": "~1.1.1", "gulp-less": "~3.1.0", "gulp-load-plugins": "~1.3.0", "gulp-mocha": "~3.0.1", "gulp-ng-annotate": "~2.0.0", "gulp-nodemon": "~2.2.1", "gulp-protractor": "~3.0.0", "gulp-refresh": "~1.1.0", "gulp-rename": "~1.2.2", "gulp-rev": "^7.1.2", "gulp-sass": "~2.3.0", "gulp-uglify": "~2.0.0", "gulp-util": "~3.0.7", "imagemin-pngquant": "~5.0.0", "istanbul": "~0.4.2", "karma": "~1.3.0", "karma-chrome-launcher": "~2.0.0", "karma-coverage": "~1.1.1", "karma-firefox-launcher": "~1.0.0", "karma-jasmine": "~1.0.2", "karma-ng-html2js-preprocessor": "~1.0.0", "karma-phantomjs-launcher": "~1.0.0", "lcov-result-merger": "~1.2.0", "mock-fs": "~3.11.0", "node-inspector": "~0.12.8", "run-sequence": "~1.2.2", "semver": "~5.3.0", "should": "~11.1.0", "supertest": "~2.0.0" }, "bugs": { "url": "https://github.com/meanjs/mean/issues" }, "homepage": "https://github.com/meanjs/mean#readme", "main": ".eslintrc.js", "keywords": [ "test" ] } Is this ok? (yes) |
BUT ‘grunt’ NEVER WORK!!!
SOLUTION: I SHOULD USE ‘gulp’ INSTEAD OF ‘grunt’ (OR I THINK NO NEED TO USE ‘grunt’ ANYMORE???)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ gulp [14:46:56] Using gulpfile ~/Documents/node/meanjs/gulpfile.js [14:46:56] Starting 'default'... [14:46:56] Starting 'env:dev'... [14:46:56] Finished 'env:dev' after 151 μs [14:46:56] Starting 'copyLocalEnvConfig'... [14:46:56] Starting 'makeUploadsDir'... [14:46:56] Finished 'makeUploadsDir' after 62 μs [14:46:56] Finished 'copyLocalEnvConfig' after 46 ms [14:46:56] Starting 'lint'... [14:46:56] Starting 'less'... [14:46:57] Finished 'less' after 657 ms [14:46:57] Starting 'sass'... [14:46:57] Finished 'sass' after 26 ms [14:46:57] Starting 'csslint'... [14:46:57] Starting 'eslint'... [14:46:58] Finished 'csslint' after 1.15 s [14:47:03] Finished 'eslint' after 6.23 s [14:47:03] Finished 'lint' after 7 s [14:47:03] Starting 'nodemon'... [14:47:03] Finished 'nodemon' after 60 ms [14:47:03] Starting 'watch'... [14:47:03] Finished 'watch' after 170 ms [14:47:03] Finished 'default' after 7.28 s [14:47:03] [nodemon] 1.11.0 [14:47:03] [nodemon] to restart at any time, enter `rs` [14:47:03] [nodemon] ignoring: /home/teddy/Documents/node/meanjs/.git/**/* .nyc_output .sass-cache bower_components coverage /home/teddy/Documents/node/meanjs/node_modules/**/* [14:47:03] [nodemon] watching: modules/*/server/views/*.html server.js config/**/*.js modules/*/server/**/*.js modules/*/server/config/*.js [14:47:03] [nodemon] watching extensions: js,html [14:47:03] [nodemon] starting `node --debug server.js` [14:47:03] [nodemon] child pid: 21635 Debugger listening on [::]:5858 [14:47:04] [nodemon] watching 174 files + Important warning: config.domain is empty. It should be set to the fully qualified domain of the app. -- MEAN.JS - Development Environment Environment: development Server: http://0.0.0.0:3000 Database: mongodb://localhost/mean-dev App version: 0.5.0 MEAN.JS version: 0.5.0 -- info: GET / 200 83.522 ms - - info: GET /lib/bootstrap/dist/css/bootstrap-theme.css 200 8.267 ms - - ... |
OR JUST TYPE ‘node server’ IS SAME!
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ gulp [14:46:56] Using gulpfile ~/Documents/node/meanjs/gulpfile.js [14:46:56] Starting 'default'... [14:46:56] Starting 'env:dev'... [14:46:56] Finished 'env:dev' after 151 μs [14:46:56] Starting 'copyLocalEnvConfig'... [14:46:56] Starting 'makeUploadsDir'... [14:46:56] Finished 'makeUploadsDir' after 62 μs [14:46:56] Finished 'copyLocalEnvConfig' after 46 ms [14:46:56] Starting 'lint'... [14:46:56] Starting 'less'... [14:46:57] Finished 'less' after 657 ms [14:46:57] Starting 'sass'... [14:46:57] Finished 'sass' after 26 ms [14:46:57] Starting 'csslint'... [14:46:57] Starting 'eslint'... [14:46:58] Finished 'csslint' after 1.15 s [14:47:03] Finished 'eslint' after 6.23 s [14:47:03] Finished 'lint' after 7 s [14:47:03] Starting 'nodemon'... [14:47:03] Finished 'nodemon' after 60 ms [14:47:03] Starting 'watch'... [14:47:03] Finished 'watch' after 170 ms [14:47:03] Finished 'default' after 7.28 s [14:47:03] [nodemon] 1.11.0 [14:47:03] [nodemon] to restart at any time, enter `rs` [14:47:03] [nodemon] ignoring: /home/teddy/Documents/node/meanjs/.git/**/* .nyc_output .sass-cache bower_components coverage /home/teddy/Documents/node/meanjs/node_modules/**/* [14:47:03] [nodemon] watching: modules/*/server/views/*.html server.js config/**/*.js modules/*/server/**/*.js modules/*/server/config/*.js [14:47:03] [nodemon] watching extensions: js,html [14:47:03] [nodemon] starting `node --debug server.js` [14:47:03] [nodemon] child pid: 21635 Debugger listening on [::]:5858 [14:47:04] [nodemon] watching 174 files + Important warning: config.domain is empty. It should be set to the fully qualified domain of the app. -- MEAN.JS - Development Environment Environment: development Server: http://0.0.0.0:3000 Database: mongodb://localhost/mean-dev App version: 0.5.0 MEAN.JS version: 0.5.0 -- info: GET / 200 83.522 ms - - info: GET /lib/bootstrap/dist/css/bootstrap-theme.css 200 8.267 ms - - ... |
NOW IT WORKS (http://localhost:3000/)
NOTE: I ALSO ALREADY INSTALLED MEAN-CLI
|
1 2 |
teddy@teddy-K43SJ:~/Documents/node/meanjs$ mean -v 0.11.0 |
THAT I CAN CREATE A NODE JS PROJECT LOCALLY WITHOUT HAVE TO DOWNLOAD/CLONE FROM GITHUB??? mean-cli FROM LINNOVATE??? LET’S GIVE A TEST! I WANT TO CREATE ‘test-project’:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
teddy@teddy-K43SJ:~/Documents/node$ mean init test-project ? What would you name your mean app? test-project ? The Mean project is currently in developer preview. To help improve the - quality of this product, we collect anonymized data on how the mean-cli is use? The Mean project is currently in developer preview. To help improve the - quality of this product, we collect anonymized data on how the mean-cli is used - You have previously requested for us not to submit your anonymous data to the mean network therefore we changed the default settings not to submit the data You can enable this in the future by running the following command: mean enable user-reporting Do you want to help us improve the mean network (Y/n)? n Cloning branch: master into destination folder: test-project git clone --depth 1 -bmaster https://github.com/linnovate/mean.git "test-project" Cloning into 'test-project'... t t t@@%SS%%XS@@S@X88X 8XtSS88.;::::8t.8t.:8S88X8: # WELCOME TO .8t@888 ;t8.8 8 :8%;.8:;8t.;8S88; # THE MEAN STACK tt@8;;;. ::. . . :;::..::8% 8::8;X88%; # X8;t;8 :XSXXS@t8 :8;.8t88 8;: 8t8t # BEFORE YOU START ;;::. :8:XSXXS8 :. 8%; ;: 8.8%;:S@t # Make sure you have the prerequisites X.8 :. XXXSXSS88 :..88 8::..8;% # Node.js, MongoDB and Git installed @8;:8 :XSXXSXS% .:8t:8. S.8t.;.. # And install gulp globally @S;. ::XXSX%XXS8:.;.;t. X% 8::.8@X # $ sudo npm install -g gulp 88;::8 SXXS@@%XX88;88 .t; 88t.:@%8 # %;:8 :XSX@..8SSS :@ S.t St.8;%@ # Install npm (server) dependencies: %: .::XXSXXt:@XSS S X 8 8..;.8; # $ npm install 8SS8 :XSXX%;8@@XXS :;.; 8.8;8 ; # Install bower (client side) dependencies: :S: :8:XXX;. ;XSX 8:8t S;:.Xt # $ bower install @88 . XSXX%:;:;XX 8..:. 88t.8% # X: :;:XXSXS;8 88t ;:8t.8 8t.8S@: # NOTE ABOUT PERMISSIONS t.:8 SXSX%. . .S S%:8% 8 ::8% # Most installation problems are related 88; :8888@8 .::88.8% :8888t8;;;@ # to permissions, your ~/.npm directory :@@@t88 t :8 . :.:..8 8 .8S8Xt. # should be owned by your user and not root. ;t8S8@@8 . ::8;8;8% :tX88@%.8 # ;:.@8@%88 ; ;@88@t8;: # For more info and documentation ;;8S88S;8%888;8 # Checkout http://learn.mean.io ;::tS88 # t8 # For support and the community # Checkout http://gitter.im/linnovate/mean Added the "remote" upstream origin ############################################# Congratulations you have mean.io installed. Before you install the dependencies and fire up the server we can help you with setting up your first admin user. ? Cool, bring it on: N |
Go into ‘test-project’ directory:
|
1 |
teddy@teddy-K43SJ:~/Documents/node$ cd test-project/ |
Install the dependencies (take a long time):
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 |
teddy@teddy-K43SJ:~/Documents/node/test-project$ npm install npm WARN deprecated swig@1.4.2: This package is no longer maintained npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. npm WARN deprecated graceful-fs@2.0.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. npm WARN prefer global coffee-script@1.10.0 should be installed with -g npm WARN prefer global node-gyp@3.5.0 should be installed with -g > phantomjs-prebuilt@2.1.14 install /home/teddy/Documents/node/test-project/node_modules/phantomjs-prebuilt > node install.js PhantomJS not found on PATH Download already available at /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 Verified checksum of previously downloaded file Extracting tar contents (via spawned process) Removing /home/teddy/Documents/node/test-project/node_modules/phantomjs-prebuilt/lib/phantom Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1487232993569/phantomjs-2.1.1-linux-x86_64 -> /home/teddy/Documents/node/test-project/node_modules/phantomjs-prebuilt/lib/phantom Writing location.js file Done. Phantomjs binary available at /home/teddy/Documents/node/test-project/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs > node-sass@4.5.0 install /home/teddy/Documents/node/test-project/node_modules/node-sass > node scripts/install.js Downloading binary from https://github.com/sass/node-sass/releases/download/v4.5.0/linux-x64-48_binding.node Download complete ] - : Binary saved to /home/teddy/Documents/node/test-project/node_modules/node-sass/vendor/linux-x64-48/binding.node Caching binary to /home/teddy/.npm/node-sass/4.5.0/linux-x64-48_binding.node > meanio@0.9.4 postinstall /home/teddy/Documents/node/test-project/node_modules/meanio > cd ./lib/core_modules/server && npm install && cd ../../.. npm WARN deprecated mongodb@1.4.40: Please upgrade to 2.2.19 or higher > bson@0.2.22 install /home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/bson > (node-gyp rebuild 2> builderror.log) || (exit 0) make: Entering directory `/home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/bson/build' CXX(target) Release/obj.target/bson/ext/bson.o make: Leaving directory `/home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/bson/build' > kerberos@0.0.11 install /home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/kerberos > (node-gyp rebuild 2> builderror.log) || (exit 0) make: Entering directory `/home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/kerberos/build' CXX(target) Release/obj.target/kerberos/lib/kerberos.o make: Leaving directory `/home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server/node_modules/kerberos/build' server@ /home/teddy/Documents/node/test-project/node_modules/meanio/lib/core_modules/server ├─┬ connect-mongo@0.4.2 │ └─┬ mongodb@1.4.40 │ ├─┬ bson@0.2.22 │ │ └── nan@1.8.4 │ ├── kerberos@0.0.11 │ └─┬ readable-stream@2.2.2 │ ├── buffer-shims@1.0.0 │ ├── core-util-is@1.0.2 │ ├── inherits@2.0.3 │ ├── isarray@1.0.0 │ ├── process-nextick-args@1.0.7 │ ├── string_decoder@0.10.31 │ └── util-deprecate@1.0.2 ├─┬ cookie-parser@1.4.3 │ ├── cookie@0.3.1 │ └── cookie-signature@1.0.6 ├─┬ express@4.14.1 │ ├─┬ accepts@1.3.3 │ │ ├─┬ mime-types@2.1.14 │ │ │ └── mime-db@1.26.0 │ │ └── negotiator@0.6.1 │ ├── array-flatten@1.1.1 │ ├── content-disposition@0.5.2 │ ├── content-type@1.0.2 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── depd@1.1.0 │ ├── encodeurl@1.0.1 │ ├── escape-html@1.0.3 │ ├── etag@1.7.0 │ ├─┬ finalhandler@0.5.1 │ │ ├── statuses@1.3.1 │ │ └── unpipe@1.0.0 │ ├── fresh@0.3.0 │ ├── merge-descriptors@1.0.1 │ ├── methods@1.1.2 │ ├─┬ on-finished@2.3.0 │ │ └── ee-first@1.1.1 │ ├── parseurl@1.3.1 │ ├── path-to-regexp@0.1.7 │ ├─┬ proxy-addr@1.1.3 │ │ ├── forwarded@0.1.0 │ │ └── ipaddr.js@1.2.0 │ ├── qs@6.2.0 │ ├── range-parser@1.2.0 │ ├─┬ send@0.14.2 │ │ ├── destroy@1.0.4 │ │ ├─┬ http-errors@1.5.1 │ │ │ └── setprototypeof@1.0.2 │ │ ├── mime@1.3.4 │ │ └── ms@0.7.2 │ ├── serve-static@1.11.2 │ ├─┬ type-is@1.6.14 │ │ └── media-typer@0.3.0 │ ├── utils-merge@1.0.0 │ └── vary@1.1.0 ├─┬ express-session@1.15.1 │ ├── crc@3.4.4 │ ├─┬ debug@2.6.1 │ │ └── ms@0.7.2 │ ├── on-headers@1.0.1 │ └─┬ uid-safe@2.1.3 │ ├── base64-url@1.3.3 │ └── random-bytes@1.0.0 ├─┬ express-validator@2.21.0 │ ├── bluebird@3.4.7 │ ├── lodash@4.16.6 │ └── validator@5.7.0 ├─┬ gridfs-stream@1.1.1 │ └── flushwritable@1.0.0 ├─┬ method-override@1.0.2 │ └── methods@1.0.0 └─┬ passport@0.2.2 ├── passport-strategy@1.0.0 └── pause@0.0.1 npm WARN server@ No description npm WARN server@ No repository field. npm WARN server@ No license field. > node-sass@4.5.0 postinstall /home/teddy/Documents/node/test-project/node_modules/node-sass > node scripts/build.js Binary found at /home/teddy/Documents/node/test-project/node_modules/node-sass/vendor/linux-x64-48/binding.node Testing binary Binary is fine > mean@0.9.1 postinstall /home/teddy/Documents/node/test-project > node tools/scripts/postinstall.js Auto installing package dependencies mean@0.9.1 /home/teddy/Documents/node/test-project ├── UNMET PEER DEPENDENCY angular@1.6.2 ├── UNMET PEER DEPENDENCY angular-animate@1.6.2 ├── UNMET PEER DEPENDENCY angular-aria@1.6.2 ├─┬ meanio@0.9.4 │ └─┬ express-jwt@5.1.0 │ └── jsonwebtoken@6.2.0 ├─┬ meanio-admin@0.1.10 │ ├─┬ gridfs-stream@1.1.1 │ │ └── flushwritable@1.0.0 │ ├─┬ meanio-users@0.1.8 │ │ ├── angular-jwt@0.1.9 │ │ ├─┬ nodemailer@2.7.2 │ │ │ ├─┬ libmime@3.0.0 │ │ │ │ ├── libbase64@0.1.0 │ │ │ │ └── libqp@1.1.0 │ │ │ ├─┬ mailcomposer@4.0.1 │ │ │ │ └─┬ buildmail@4.0.1 │ │ │ │ └── addressparser@1.0.1 │ │ │ ├─┬ nodemailer-direct-transport@3.3.2 │ │ │ │ └─┬ smtp-connection@2.12.0 │ │ │ │ └─┬ httpntlm@1.6.1 │ │ │ │ ├── httpreq@0.4.22 │ │ │ │ └── underscore@1.7.0 │ │ │ ├─┬ nodemailer-shared@1.1.0 │ │ │ │ └── nodemailer-fetch@1.6.0 │ │ │ ├─┬ nodemailer-smtp-pool@2.8.2 │ │ │ │ └── nodemailer-wellknown@0.1.10 │ │ │ ├── nodemailer-smtp-transport@2.7.2 │ │ │ └─┬ socks@1.1.9 │ │ │ ├── ip@1.1.4 │ │ │ └── smart-buffer@1.1.15 │ │ ├─┬ passport-facebook@2.1.1 │ │ │ └─┬ passport-oauth2@1.4.0 │ │ │ ├── oauth@0.9.15 │ │ │ └── uid2@0.0.3 │ │ ├── passport-github@1.1.0 │ │ ├─┬ passport-google-oauth@1.0.0 │ │ │ ├── passport-google-oauth1@1.0.0 │ │ │ └── passport-google-oauth20@1.0.0 │ │ ├─┬ passport-linkedin@1.0.0 │ │ │ └── passport-oauth1@1.1.0 │ │ ├─┬ passport-local@1.0.0 │ │ │ └── passport-strategy@1.0.0 │ │ └─┬ passport-twitter@1.0.4 │ │ └── xtraverse@0.1.0 │ ├── ng-clip@0.2.6 │ └── zeroclipboard@2.3.0 └─┬ meanio-system@0.1.4 ├── meanio-circles@0.1.7 └── serve-favicon@2.3.2 Dependencies installed for package meanStarter > mean@0.9.1 prepublish /home/teddy/Documents/node/test-project > npm run snyk-protect > mean@0.9.1 snyk-protect /home/teddy/Documents/node/test-project > snyk protect Successfully applied Snyk patches mean@0.9.1 /home/teddy/Documents/node/test-project ├── UNMET PEER DEPENDENCY angular@1.6.2 ├── UNMET PEER DEPENDENCY angular-animate@1.6.2 ├── UNMET PEER DEPENDENCY angular-aria@1.6.2 ├── angular-bootstrap@0.12.2 ├── angular-cookies@1.6.2 ├── angular-jwt@0.1.9 ├── angular-material@1.1.3 ├── angular-mocks@1.6.2 ├── angular-resource@1.6.2 ├── angular-route@1.6.2 ├── angular-sanitize@1.6.2 ├── angular-ui-router@0.4.2 ├── angular-ui-select@0.12.100 ├─┬ babel-core@6.23.1 │ ├─┬ babel-code-frame@6.22.0 │ │ ├── esutils@2.0.2 │ │ └── js-tokens@3.0.1 │ ├─┬ babel-generator@6.23.0 │ │ ├─┬ detect-indent@4.0.0 │ │ │ └── repeating@2.0.1 │ │ ├── jsesc@1.3.0 │ │ └── trim-right@1.0.1 │ ├── babel-helpers@6.23.0 │ ├── babel-messages@6.23.0 │ ├─┬ babel-register@6.23.0 │ │ └── home-or-tmp@2.0.0 │ ├─┬ babel-runtime@6.23.0 │ │ └── regenerator-runtime@0.10.1 │ ├── babel-template@6.23.0 │ ├─┬ babel-traverse@6.23.1 │ │ ├── globals@9.15.0 │ │ └─┬ invariant@2.2.2 │ │ └── loose-envify@1.3.1 │ ├─┬ babel-types@6.23.0 │ │ └── to-fast-properties@1.0.2 │ ├── babylon@6.15.0 │ ├── convert-source-map@1.4.0 │ ├── json5@0.5.1 │ ├─┬ minimatch@3.0.3 │ │ └─┬ brace-expansion@1.1.6 │ │ ├── balanced-match@0.4.2 │ │ └── concat-map@0.0.1 │ ├── path-is-absolute@1.0.1 │ ├── private@0.1.7 │ ├── slash@1.0.0 │ └── source-map@0.5.6 ├─┬ babel-loader@6.3.1 │ ├─┬ find-cache-dir@0.1.1 │ │ ├── commondir@1.0.1 │ │ └─┬ pkg-dir@1.0.0 │ │ └─┬ find-up@1.1.2 │ │ └── path-exists@2.1.0 │ ├─┬ loader-utils@0.2.16 │ │ ├── big.js@3.1.3 │ │ ├── emojis-list@2.1.0 │ │ └── json5@0.5.1 │ ├─┬ mkdirp@0.5.1 │ │ └── minimist@0.0.8 │ └── object-assign@4.1.1 ├─┬ babel-preset-es2015@6.22.0 │ ├── babel-plugin-check-es2015-constants@6.22.0 │ ├── babel-plugin-transform-es2015-arrow-functions@6.22.0 │ ├── babel-plugin-transform-es2015-block-scoped-functions@6.22.0 │ ├── babel-plugin-transform-es2015-block-scoping@6.23.0 │ ├─┬ babel-plugin-transform-es2015-classes@6.23.0 │ │ ├── babel-helper-define-map@6.23.0 │ │ ├── babel-helper-function-name@6.23.0 │ │ ├── babel-helper-optimise-call-expression@6.23.0 │ │ └── babel-helper-replace-supers@6.23.0 │ ├── babel-plugin-transform-es2015-computed-properties@6.22.0 │ ├── babel-plugin-transform-es2015-destructuring@6.23.0 │ ├── babel-plugin-transform-es2015-duplicate-keys@6.22.0 │ ├── babel-plugin-transform-es2015-for-of@6.23.0 │ ├── babel-plugin-transform-es2015-function-name@6.22.0 │ ├── babel-plugin-transform-es2015-literals@6.22.0 │ ├── babel-plugin-transform-es2015-modules-amd@6.22.0 │ ├─┬ babel-plugin-transform-es2015-modules-commonjs@6.23.0 │ │ └── babel-plugin-transform-strict-mode@6.22.0 │ ├─┬ babel-plugin-transform-es2015-modules-systemjs@6.23.0 │ │ └── babel-helper-hoist-variables@6.22.0 │ ├── babel-plugin-transform-es2015-modules-umd@6.23.0 │ ├── babel-plugin-transform-es2015-object-super@6.22.0 │ ├─┬ babel-plugin-transform-es2015-parameters@6.23.0 │ │ ├── babel-helper-call-delegate@6.22.0 │ │ └── babel-helper-get-function-arity@6.22.0 │ ├── babel-plugin-transform-es2015-shorthand-properties@6.22.0 │ ├── babel-plugin-transform-es2015-spread@6.22.0 │ ├─┬ babel-plugin-transform-es2015-sticky-regex@6.22.0 │ │ └── babel-helper-regex@6.22.0 │ ├── babel-plugin-transform-es2015-template-literals@6.22.0 │ ├── babel-plugin-transform-es2015-typeof-symbol@6.23.0 │ ├─┬ babel-plugin-transform-es2015-unicode-regex@6.22.0 │ │ └─┬ regexpu-core@2.0.0 │ │ ├── regenerate@1.3.2 │ │ ├── regjsgen@0.2.0 │ │ └─┬ regjsparser@0.1.5 │ │ └── jsesc@0.5.0 │ └─┬ babel-plugin-transform-regenerator@6.22.0 │ └── regenerator-transform@0.9.8 ├─┬ babel-preset-stage-1@6.22.0 │ ├─┬ babel-plugin-transform-class-constructor-call@6.22.0 │ │ └── babel-plugin-syntax-class-constructor-call@6.18.0 │ ├─┬ babel-plugin-transform-export-extensions@6.22.0 │ │ └── babel-plugin-syntax-export-extensions@6.13.0 │ └─┬ babel-preset-stage-2@6.22.0 │ ├── babel-plugin-syntax-dynamic-import@6.18.0 │ ├─┬ babel-plugin-transform-class-properties@6.23.0 │ │ └── babel-plugin-syntax-class-properties@6.13.0 │ ├─┬ babel-plugin-transform-decorators@6.22.0 │ │ ├─┬ babel-helper-explode-class@6.22.0 │ │ │ └── babel-helper-bindify-decorators@6.22.0 │ │ └── babel-plugin-syntax-decorators@6.13.0 │ └─┬ babel-preset-stage-3@6.22.0 │ ├── babel-plugin-syntax-trailing-function-commas@6.22.0 │ ├─┬ babel-plugin-transform-async-generator-functions@6.22.0 │ │ ├── babel-helper-remap-async-to-generator@6.22.0 │ │ └── babel-plugin-syntax-async-generators@6.13.0 │ ├─┬ babel-plugin-transform-async-to-generator@6.22.0 │ │ └── babel-plugin-syntax-async-functions@6.13.0 │ ├─┬ babel-plugin-transform-exponentiation-operator@6.22.0 │ │ ├─┬ babel-helper-builder-binary-assignment-operator-visitor@6.22.0 │ │ │ └── babel-helper-explode-assignable-expression@6.22.0 │ │ └── babel-plugin-syntax-exponentiation-operator@6.13.0 │ └─┬ babel-plugin-transform-object-rest-spread@6.23.0 │ └── babel-plugin-syntax-object-rest-spread@6.13.0 ├─┬ body-parser@1.16.1 │ ├── bytes@2.4.0 │ ├── content-type@1.0.2 │ ├── depd@1.1.0 │ ├─┬ http-errors@1.5.1 │ │ ├── inherits@2.0.3 │ │ ├── setprototypeof@1.0.2 │ │ └── statuses@1.3.1 │ ├── iconv-lite@0.4.15 │ ├─┬ on-finished@2.3.0 │ │ └── ee-first@1.1.1 │ ├── qs@6.2.1 │ ├─┬ raw-body@2.2.0 │ │ └── unpipe@1.0.0 │ └─┬ type-is@1.6.14 │ └── media-typer@0.3.0 ├── bootstrap@3.3.7 ├─┬ compression@1.6.2 │ ├─┬ accepts@1.3.3 │ │ └── negotiator@0.6.1 │ ├── bytes@2.3.0 │ ├─┬ compressible@2.0.9 │ │ └── mime-db@1.26.0 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── on-headers@1.0.1 │ └── vary@1.1.0 ├── connect-flash@0.1.1 ├─┬ connect-modrewrite@0.9.0 │ └── qs@1.2.2 ├─┬ consolidate@0.14.5 │ └── bluebird@3.4.7 ├─┬ cross-env@3.1.4 │ └─┬ cross-spawn@3.0.1 │ └─┬ lru-cache@4.0.2 │ ├── pseudomap@1.0.2 │ └── yallist@2.0.0 ├─┬ css-loader@0.26.1 │ ├─┬ css-selector-tokenizer@0.7.0 │ │ ├── cssesc@0.1.0 │ │ ├── fastparse@1.1.1 │ │ └── regexpu-core@1.0.0 │ ├─┬ cssnano@3.10.0 │ │ ├─┬ autoprefixer@6.7.3 │ │ │ ├─┬ browserslist@1.7.3 │ │ │ │ └── electron-to-chromium@1.2.2 │ │ │ ├── caniuse-db@1.0.30000623 │ │ │ ├── normalize-range@0.1.2 │ │ │ └── num2fraction@1.2.2 │ │ ├── decamelize@1.2.0 │ │ ├── defined@1.0.0 │ │ ├─┬ has@1.0.1 │ │ │ └── function-bind@1.1.0 │ │ ├─┬ postcss-calc@5.3.1 │ │ │ ├── postcss-message-helpers@2.0.0 │ │ │ └─┬ reduce-css-calc@1.3.0 │ │ │ ├── math-expression-evaluator@1.2.16 │ │ │ └── reduce-function-call@1.0.2 │ │ ├─┬ postcss-colormin@2.2.2 │ │ │ └─┬ colormin@1.1.2 │ │ │ ├─┬ color@0.11.4 │ │ │ │ ├─┬ color-convert@1.9.0 │ │ │ │ │ └── color-name@1.1.1 │ │ │ │ └── color-string@0.3.0 │ │ │ └── css-color-names@0.0.4 │ │ ├── postcss-convert-values@2.6.1 │ │ ├── postcss-discard-comments@2.0.4 │ │ ├── postcss-discard-duplicates@2.0.2 │ │ ├── postcss-discard-empty@2.1.0 │ │ ├── postcss-discard-overridden@0.1.1 │ │ ├─┬ postcss-discard-unused@2.2.3 │ │ │ └── uniqs@2.0.0 │ │ ├─┬ postcss-filter-plugins@2.0.2 │ │ │ └─┬ uniqid@4.1.1 │ │ │ └── macaddress@0.2.8 │ │ ├── postcss-merge-idents@2.1.7 │ │ ├── postcss-merge-longhand@2.0.2 │ │ ├─┬ postcss-merge-rules@2.1.1 │ │ │ ├─┬ caniuse-api@1.5.3 │ │ │ │ ├── lodash.memoize@4.1.2 │ │ │ │ └── lodash.uniq@4.5.0 │ │ │ ├─┬ postcss-selector-parser@2.2.2 │ │ │ │ ├── flatten@1.0.2 │ │ │ │ ├── indexes-of@1.0.1 │ │ │ │ └── uniq@1.0.1 │ │ │ └── vendors@1.0.1 │ │ ├── postcss-minify-font-values@1.0.5 │ │ ├── postcss-minify-gradients@1.0.5 │ │ ├─┬ postcss-minify-params@1.2.2 │ │ │ └── alphanum-sort@1.0.2 │ │ ├── postcss-minify-selectors@2.1.1 │ │ ├── postcss-normalize-charset@1.1.1 │ │ ├─┬ postcss-normalize-url@3.0.8 │ │ │ ├── is-absolute-url@2.1.0 │ │ │ └─┬ normalize-url@1.9.0 │ │ │ ├── prepend-http@1.0.4 │ │ │ ├─┬ query-string@4.3.2 │ │ │ │ └── strict-uri-encode@1.1.0 │ │ │ └─┬ sort-keys@1.1.2 │ │ │ └── is-plain-obj@1.1.0 │ │ ├── postcss-ordered-values@2.2.3 │ │ ├── postcss-reduce-idents@2.4.0 │ │ ├── postcss-reduce-initial@1.0.1 │ │ ├── postcss-reduce-transforms@1.0.4 │ │ ├─┬ postcss-svgo@2.1.6 │ │ │ ├─┬ is-svg@2.1.0 │ │ │ │ └── html-comment-regex@1.1.1 │ │ │ └─┬ svgo@0.7.2 │ │ │ ├── coa@1.0.1 │ │ │ ├─┬ csso@2.3.1 │ │ │ │ └── clap@1.1.2 │ │ │ ├── js-yaml@3.7.0 │ │ │ └── whet.extend@0.9.9 │ │ ├── postcss-unique-selectors@2.0.2 │ │ ├── postcss-value-parser@3.3.0 │ │ └── postcss-zindex@2.2.0 │ ├── lodash.camelcase@4.3.0 │ ├─┬ postcss@5.2.13 │ │ ├── js-base64@2.1.9 │ │ └── supports-color@3.2.3 │ ├── postcss-modules-extract-imports@1.0.1 │ ├─┬ postcss-modules-local-by-default@1.1.1 │ │ └─┬ css-selector-tokenizer@0.6.0 │ │ └── regexpu-core@1.0.0 │ ├─┬ postcss-modules-scope@1.0.2 │ │ └─┬ css-selector-tokenizer@0.6.0 │ │ └── regexpu-core@1.0.0 │ ├─┬ postcss-modules-values@1.2.2 │ │ └── icss-replace-symbols@1.0.2 │ └── source-list-map@0.1.8 ├─┬ debug@2.6.1 │ └── ms@0.7.2 ├─┬ del@2.2.2 │ ├─┬ globby@5.0.0 │ │ ├── array-union@1.0.2 │ │ └── arrify@1.0.1 │ ├── is-path-cwd@1.0.0 │ ├─┬ is-path-in-cwd@1.0.0 │ │ └─┬ is-path-inside@1.0.0 │ │ └── path-is-inside@1.0.2 │ ├── pify@2.3.0 │ ├─┬ pinkie-promise@2.0.1 │ │ └── pinkie@2.0.4 │ └── rimraf@2.2.8 ├── expect.js@0.3.1 ├─┬ express@4.14.1 │ ├── array-flatten@1.1.1 │ ├── content-disposition@0.5.2 │ ├── cookie@0.3.1 │ ├── cookie-signature@1.0.6 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── encodeurl@1.0.1 │ ├── escape-html@1.0.3 │ ├── etag@1.7.0 │ ├─┬ finalhandler@0.5.1 │ │ └─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── fresh@0.3.0 │ ├── merge-descriptors@1.0.1 │ ├── methods@1.1.2 │ ├── parseurl@1.3.1 │ ├── path-to-regexp@0.1.7 │ ├─┬ proxy-addr@1.1.3 │ │ ├── forwarded@0.1.0 │ │ └── ipaddr.js@1.2.0 │ ├── qs@6.2.0 │ ├── range-parser@1.2.0 │ ├─┬ send@0.14.2 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ └── destroy@1.0.4 │ ├── serve-static@1.11.2 │ └── utils-merge@1.0.0 ├── file-loader@0.10.0 ├─┬ gulp@3.9.1 │ ├── archy@1.0.0 │ ├─┬ chalk@1.1.3 │ │ ├── ansi-styles@2.2.1 │ │ ├── has-ansi@2.0.0 │ │ └── supports-color@2.0.0 │ ├── deprecated@0.0.1 │ ├── interpret@1.0.1 │ ├─┬ liftoff@2.3.0 │ │ ├── findup-sync@0.4.3 │ │ ├─┬ fined@1.0.2 │ │ │ ├── expand-tilde@1.2.2 │ │ │ ├── lodash.assignwith@4.2.0 │ │ │ ├── lodash.isempty@4.4.0 │ │ │ ├── lodash.pick@4.4.0 │ │ │ └─┬ parse-filepath@1.0.1 │ │ │ ├─┬ is-absolute@0.2.6 │ │ │ │ └─┬ is-relative@0.2.1 │ │ │ │ └─┬ is-unc-path@0.1.2 │ │ │ │ └── unc-path-regex@0.1.2 │ │ │ ├── map-cache@0.2.2 │ │ │ └─┬ path-root@0.1.1 │ │ │ └── path-root-regex@0.1.2 │ │ ├── flagged-respawn@0.3.2 │ │ ├── lodash.isplainobject@4.0.6 │ │ ├── lodash.isstring@4.0.1 │ │ └── lodash.mapvalues@4.6.0 │ ├── minimist@1.2.0 │ ├─┬ orchestrator@0.3.8 │ │ ├─┬ end-of-stream@0.1.5 │ │ │ └── once@1.3.3 │ │ ├── sequencify@0.0.7 │ │ └── stream-consume@0.1.0 │ ├── pretty-hrtime@1.0.3 │ ├── semver@4.3.6 │ ├─┬ tildify@1.2.0 │ │ └── os-homedir@1.0.2 │ ├─┬ v8flags@2.0.11 │ │ └── user-home@1.1.1 │ └─┬ vinyl-fs@0.3.14 │ ├── defaults@1.0.3 │ ├─┬ glob-stream@3.1.18 │ │ ├── glob@4.5.3 │ │ ├─┬ glob2base@0.0.12 │ │ │ └── find-index@0.1.1 │ │ ├── minimatch@2.0.10 │ │ ├── ordered-read-streams@0.1.0 │ │ ├─┬ through2@0.6.5 │ │ │ └─┬ readable-stream@1.0.34 │ │ │ └── isarray@0.0.1 │ │ └── unique-stream@1.0.0 │ ├─┬ glob-watcher@0.0.6 │ │ └─┬ gaze@0.5.2 │ │ └─┬ globule@0.1.0 │ │ ├─┬ glob@3.1.21 │ │ │ ├── graceful-fs@1.2.3 │ │ │ └── inherits@1.0.2 │ │ ├── lodash@1.0.2 │ │ └─┬ minimatch@0.2.14 │ │ ├── lru-cache@2.7.3 │ │ └── sigmund@1.0.1 │ ├─┬ graceful-fs@3.0.11 │ │ └── natives@1.1.0 │ ├─┬ strip-bom@1.0.0 │ │ ├── first-chunk-stream@1.0.0 │ │ └── is-utf8@0.2.1 │ ├─┬ through2@0.6.5 │ │ └─┬ readable-stream@1.0.34 │ │ └── isarray@0.0.1 │ └─┬ vinyl@0.4.6 │ └── clone@0.2.0 ├─┬ gulp-concat@2.6.1 │ ├── concat-with-sourcemaps@1.0.4 │ ├─┬ through2@2.0.3 │ │ └─┬ readable-stream@2.1.5 │ │ ├── buffer-shims@1.0.0 │ │ ├── isarray@1.0.0 │ │ └── util-deprecate@1.0.2 │ └─┬ vinyl@2.0.1 │ ├── clone@1.0.2 │ ├── clone-buffer@1.0.0 │ ├── clone-stats@1.0.0 │ ├─┬ cloneable-readable@1.0.0 │ │ └── process-nextick-args@1.0.7 │ ├── is-stream@1.1.0 │ ├── remove-trailing-separator@1.0.1 │ └── replace-ext@1.0.0 ├─┬ gulp-csslint@1.0.0 │ ├─┬ csslint@1.0.5 │ │ ├── clone@2.1.0 │ │ └── parserlib@1.1.1 │ └─┬ rcloader@0.2.2 │ ├── lodash.isobject@3.0.2 │ ├── lodash.merge@4.6.0 │ └── rcfinder@0.1.9 ├─┬ gulp-cssmin@0.1.7 │ ├─┬ clean-css@3.4.24 │ │ ├── commander@2.8.1 │ │ └── source-map@0.4.4 │ ├── filesize@2.0.4 │ ├── graceful-fs@2.0.3 │ ├── gulp-rename@1.1.0 │ ├─┬ gulp-util@2.2.20 │ │ ├─┬ chalk@0.5.1 │ │ │ ├── ansi-styles@1.1.0 │ │ │ ├─┬ has-ansi@0.1.0 │ │ │ │ └── ansi-regex@0.2.1 │ │ │ ├── strip-ansi@0.3.0 │ │ │ └── supports-color@0.2.0 │ │ ├── lodash._reinterpolate@2.4.1 │ │ ├─┬ lodash.template@2.4.1 │ │ │ ├── lodash._escapestringchar@2.4.1 │ │ │ ├─┬ lodash.defaults@2.4.1 │ │ │ │ └── lodash._objecttypes@2.4.1 │ │ │ ├─┬ lodash.escape@2.4.1 │ │ │ │ ├─┬ lodash._escapehtmlchar@2.4.1 │ │ │ │ │ └── lodash._htmlescapes@2.4.1 │ │ │ │ └─┬ lodash._reunescapedhtml@2.4.1 │ │ │ │ └─┬ lodash.keys@2.4.1 │ │ │ │ └── lodash.isobject@2.4.1 │ │ │ ├─┬ lodash.keys@2.4.1 │ │ │ │ ├── lodash._isnative@2.4.1 │ │ │ │ ├── lodash._shimkeys@2.4.1 │ │ │ │ └── lodash.isobject@2.4.1 │ │ │ ├── lodash.templatesettings@2.4.1 │ │ │ └─┬ lodash.values@2.4.1 │ │ │ └─┬ lodash.keys@2.4.1 │ │ │ └── lodash.isobject@2.4.1 │ │ ├── minimist@0.2.0 │ │ ├─┬ through2@0.5.1 │ │ │ ├─┬ readable-stream@1.0.34 │ │ │ │ └── isarray@0.0.1 │ │ │ └── xtend@3.0.0 │ │ └── vinyl@0.2.3 │ ├── map-stream@0.0.4 │ └─┬ temp-write@0.1.1 │ ├── graceful-fs@2.0.3 │ └─┬ tempfile@0.1.3 │ └── uuid@1.4.2 ├── gulp-jshint@2.0.4 ├─┬ gulp-livereload@3.8.1 │ ├─┬ chalk@0.5.1 │ │ ├── ansi-styles@1.1.0 │ │ ├─┬ has-ansi@0.1.0 │ │ │ └── ansi-regex@0.2.1 │ │ ├── strip-ansi@0.3.0 │ │ └── supports-color@0.2.0 │ ├─┬ event-stream@3.3.4 │ │ ├── duplexer@0.1.1 │ │ ├── from@0.1.3 │ │ ├── map-stream@0.1.0 │ │ ├── pause-stream@0.0.11 │ │ ├── split@0.3.3 │ │ └── stream-combiner@0.0.4 │ ├─┬ lodash.assign@3.2.0 │ │ ├── lodash._baseassign@3.2.0 │ │ ├─┬ lodash._createassigner@3.1.1 │ │ │ └── lodash._bindcallback@3.0.1 │ │ └─┬ lodash.keys@3.1.2 │ │ ├── lodash._getnative@3.9.1 │ │ ├── lodash.isarguments@3.1.0 │ │ └── lodash.isarray@3.0.4 │ └─┬ mini-lr@0.1.9 │ ├─┬ body-parser@1.14.2 │ │ ├── bytes@2.2.0 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ ├── http-errors@1.3.1 │ │ ├── iconv-lite@0.4.13 │ │ ├── qs@5.2.0 │ │ └─┬ raw-body@2.1.7 │ │ └── bytes@2.4.0 │ ├─┬ faye-websocket@0.7.3 │ │ └─┬ websocket-driver@0.6.5 │ │ └── websocket-extensions@0.1.1 │ ├── livereload-js@2.2.2 │ └── qs@2.2.5 ├─┬ gulp-load-plugins@1.5.0 │ ├── array-unique@0.2.1 │ ├─┬ fancy-log@1.3.0 │ │ └── time-stamp@1.0.1 │ ├─┬ findup-sync@0.4.3 │ │ ├─┬ detect-file@0.1.0 │ │ │ └── fs-exists-sync@0.1.0 │ │ ├── is-glob@2.0.1 │ │ └─┬ resolve-dir@0.1.1 │ │ └─┬ global-modules@0.2.3 │ │ ├─┬ global-prefix@0.1.5 │ │ │ └─┬ homedir-polyfill@1.0.1 │ │ │ └── parse-passwd@1.0.0 │ │ └── is-windows@0.2.0 │ ├─┬ gulplog@1.0.0 │ │ └── glogg@1.0.0 │ ├─┬ has-gulplog@0.1.0 │ │ └── sparkles@1.0.0 │ ├─┬ micromatch@2.3.11 │ │ ├─┬ arr-diff@2.0.0 │ │ │ └── arr-flatten@1.0.1 │ │ ├─┬ braces@1.8.5 │ │ │ ├─┬ expand-range@1.8.2 │ │ │ │ └─┬ fill-range@2.2.3 │ │ │ │ ├── is-number@2.1.0 │ │ │ │ ├── isobject@2.1.0 │ │ │ │ ├── randomatic@1.1.6 │ │ │ │ └── repeat-string@1.6.1 │ │ │ ├── preserve@0.2.0 │ │ │ └── repeat-element@1.1.2 │ │ ├─┬ expand-brackets@0.1.5 │ │ │ └── is-posix-bracket@0.1.1 │ │ ├── extglob@0.3.2 │ │ ├── filename-regex@2.0.0 │ │ ├── is-extglob@1.0.0 │ │ ├── kind-of@3.1.0 │ │ ├── normalize-path@2.0.1 │ │ ├─┬ object.omit@2.0.1 │ │ │ ├─┬ for-own@0.1.4 │ │ │ │ └── for-in@0.1.6 │ │ │ └── is-extendable@0.1.1 │ │ ├─┬ parse-glob@3.0.4 │ │ │ ├── glob-base@0.3.0 │ │ │ └── is-dotfile@1.0.2 │ │ └─┬ regex-cache@0.4.3 │ │ ├── is-equal-shallow@0.1.3 │ │ └── is-primitive@2.0.0 │ └── resolve@1.1.7 ├─┬ gulp-mocha@3.0.1 │ ├─┬ plur@2.1.2 │ │ └── irregular-plurals@1.2.0 │ ├─┬ req-cwd@1.0.1 │ │ └─┬ req-from@1.0.1 │ │ └── resolve-from@2.0.0 │ └─┬ temp@0.8.3 │ └── os-tmpdir@1.0.2 ├─┬ gulp-nodemon@2.2.1 │ ├── colors@1.1.2 │ └─┬ nodemon@1.11.0 │ ├── ignore-by-default@1.0.1 │ ├─┬ lodash.defaults@3.1.2 │ │ └── lodash.assign@3.2.0 │ ├── ps-tree@1.1.0 │ └─┬ touch@1.0.0 │ └── nopt@1.0.10 ├── gulp-plumber@1.1.0 ├─┬ gulp-uglify@2.0.1 │ ├─┬ make-error-cause@1.2.2 │ │ └── make-error@1.2.1 │ ├─┬ uglify-js@2.7.5 │ │ ├── async@0.2.10 │ │ ├── uglify-to-browserify@1.0.2 │ │ └─┬ yargs@3.10.0 │ │ ├── camelcase@1.2.1 │ │ ├─┬ cliui@2.1.0 │ │ │ ├─┬ center-align@0.1.3 │ │ │ │ ├─┬ align-text@0.1.4 │ │ │ │ │ └── longest@1.0.1 │ │ │ │ └── lazy-cache@1.0.4 │ │ │ └── right-align@0.1.3 │ │ └── window-size@0.1.0 │ ├── uglify-save-license@0.4.1 │ └── vinyl-sourcemaps-apply@0.2.1 ├─┬ gulp-util@3.0.8 │ ├── array-differ@1.0.0 │ ├── array-uniq@1.0.3 │ ├── beeper@1.1.1 │ ├── dateformat@2.0.0 │ ├── lodash._reescape@3.0.0 │ ├── lodash._reevaluate@3.0.0 │ ├── lodash._reinterpolate@3.0.0 │ ├─┬ lodash.template@3.6.2 │ │ ├── lodash._basecopy@3.0.1 │ │ ├── lodash._basetostring@3.0.1 │ │ ├── lodash._basevalues@3.0.0 │ │ ├── lodash._isiterateecall@3.0.9 │ │ ├─┬ lodash.escape@3.2.0 │ │ │ └── lodash._root@3.0.1 │ │ ├── lodash.restparam@3.6.1 │ │ └── lodash.templatesettings@3.1.1 │ ├─┬ multipipe@0.1.2 │ │ └─┬ duplexer2@0.0.2 │ │ └─┬ readable-stream@1.1.14 │ │ └── isarray@0.0.1 │ ├── object-assign@3.0.0 │ ├── replace-ext@0.0.1 │ └─┬ vinyl@0.5.3 │ └── clone-stats@0.0.1 ├─┬ helmet@2.3.0 │ ├─┬ connect@3.4.1 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ └── finalhandler@0.4.1 │ ├── dns-prefetch-control@0.1.0 │ ├── dont-sniff-mimetype@1.0.0 │ ├── frameguard@2.0.0 │ ├─┬ helmet-csp@1.2.2 │ │ ├── camelize@1.0.0 │ │ ├─┬ content-security-policy-builder@1.0.0 │ │ │ └── dashify@0.2.2 │ │ ├── lodash.reduce@4.5.0 │ │ └── platform@1.3.1 │ ├── hide-powered-by@1.0.0 │ ├── hpkp@1.2.0 │ ├─┬ hsts@1.0.0 │ │ └── core-util-is@1.0.2 │ ├── ienoopen@1.0.0 │ ├── nocache@1.0.1 │ ├── referrer-policy@1.0.0 │ └── x-xss-protection@1.0.0 ├─┬ jasmine@2.5.3 invalid │ ├── exit@0.1.2 │ ├─┬ glob@7.1.1 │ │ ├── fs.realpath@1.0.0 │ │ ├─┬ inflight@1.0.6 │ │ │ └── wrappy@1.0.2 │ │ └── once@1.4.0 │ └── jasmine-core@2.5.2 ├─┬ jasmine-reporters@2.2.0 │ └── xmldom@0.1.27 ├── jquery@3.1.1 ├─┬ jshint@2.9.4 │ ├── cli@1.0.1 │ ├─┬ console-browserify@1.1.0 │ │ └── date-now@0.1.4 │ ├─┬ htmlparser2@3.8.3 │ │ ├── domelementtype@1.3.0 │ │ ├── domhandler@2.3.0 │ │ ├─┬ domutils@1.5.1 │ │ │ └─┬ dom-serializer@0.1.0 │ │ │ ├── domelementtype@1.1.3 │ │ │ └── entities@1.1.1 │ │ ├── entities@1.0.0 │ │ └─┬ readable-stream@1.1.14 │ │ └── isarray@0.0.1 │ ├── lodash@3.7.0 │ ├── shelljs@0.3.0 │ └── strip-json-comments@1.0.4 ├─┬ jshint-stylish@2.2.1 │ ├── log-symbols@1.0.2 │ ├── string-length@1.0.1 │ └── text-table@0.2.0 ├─┬ jsonwebtoken@7.3.0 │ ├─┬ joi@6.10.1 │ │ ├── hoek@2.16.3 │ │ ├── isemail@1.2.0 │ │ ├── moment@2.17.1 │ │ └── topo@1.1.0 │ ├─┬ jws@3.1.4 │ │ ├── base64url@2.0.0 │ │ └─┬ jwa@1.1.5 │ │ ├── buffer-equal-constant-time@1.0.1 │ │ └── ecdsa-sig-formatter@1.0.9 │ ├── lodash.once@4.1.1 │ └── xtend@4.0.1 ├─┬ karma@1.4.1 │ ├─┬ chokidar@1.6.1 │ │ ├── anymatch@1.3.0 │ │ ├── async-each@1.0.1 │ │ ├── glob-parent@2.0.0 │ │ ├─┬ is-binary-path@1.0.1 │ │ │ └── binary-extensions@1.8.0 │ │ └─┬ readdirp@2.1.0 │ │ └── set-immediate-shim@1.0.1 │ ├── combine-lists@1.0.1 │ ├── core-js@2.4.1 │ ├── di@0.0.1 │ ├─┬ dom-serialize@2.2.1 │ │ ├── custom-event@1.0.1 │ │ ├── ent@2.2.0 │ │ └── void-elements@2.0.1 │ ├─┬ expand-braces@0.1.2 │ │ ├── array-slice@0.2.3 │ │ └─┬ braces@0.1.5 │ │ └─┬ expand-range@0.1.1 │ │ ├── is-number@0.1.1 │ │ └── repeat-string@0.2.2 │ ├── graceful-fs@4.1.11 │ ├─┬ http-proxy@1.16.2 │ │ ├── eventemitter3@1.2.0 │ │ └── requires-port@1.0.0 │ ├── isbinaryfile@3.0.2 │ ├── lodash@3.10.1 │ ├─┬ log4js@0.6.38 │ │ ├─┬ readable-stream@1.0.34 │ │ │ └── isarray@0.0.1 │ │ └── semver@4.3.6 │ ├── mime@1.3.4 │ ├─┬ optimist@0.6.1 │ │ ├── minimist@0.0.10 │ │ └── wordwrap@0.0.2 │ ├── qjobs@1.1.5 │ ├── rimraf@2.5.4 │ ├── safe-buffer@5.0.1 │ ├─┬ socket.io@1.7.2 │ │ ├── debug@2.3.3 │ │ ├─┬ engine.io@1.8.2 │ │ │ ├── base64id@1.0.0 │ │ │ ├── debug@2.3.3 │ │ │ ├─┬ engine.io-parser@1.3.2 │ │ │ │ ├── after@0.8.2 │ │ │ │ ├── arraybuffer.slice@0.0.6 │ │ │ │ ├── base64-arraybuffer@0.1.5 │ │ │ │ ├── blob@0.0.4 │ │ │ │ └── wtf-8@1.0.0 │ │ │ └─┬ ws@1.1.1 │ │ │ ├── options@0.0.6 │ │ │ └── ultron@1.0.2 │ │ ├─┬ has-binary@0.1.7 │ │ │ └── isarray@0.0.1 │ │ ├── object-assign@4.1.0 │ │ ├─┬ socket.io-adapter@0.5.0 │ │ │ └── debug@2.3.3 │ │ ├─┬ socket.io-client@1.7.2 │ │ │ ├── backo2@1.0.2 │ │ │ ├── component-bind@1.0.0 │ │ │ ├── component-emitter@1.2.1 │ │ │ ├── debug@2.3.3 │ │ │ ├─┬ engine.io-client@1.8.2 │ │ │ │ ├── component-emitter@1.2.1 │ │ │ │ ├── component-inherit@0.0.3 │ │ │ │ ├── debug@2.3.3 │ │ │ │ ├── has-cors@1.1.0 │ │ │ │ ├── parsejson@0.0.3 │ │ │ │ ├── parseqs@0.0.5 │ │ │ │ ├── ws@1.1.1 │ │ │ │ ├── xmlhttprequest-ssl@1.5.3 │ │ │ │ └── yeast@0.1.2 │ │ │ ├── indexof@0.0.1 │ │ │ ├── object-component@0.0.3 │ │ │ ├─┬ parseuri@0.0.5 │ │ │ │ └─┬ better-assert@1.0.2 │ │ │ │ └── callsite@1.0.0 │ │ │ └── to-array@0.1.4 │ │ └─┬ socket.io-parser@2.3.1 │ │ ├── component-emitter@1.1.2 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ └── isarray@0.0.1 │ ├── tmp@0.0.28 │ └─┬ useragent@2.1.12 │ ├── lru-cache@2.2.4 │ └── tmp@0.0.30 ├─┬ karma-chrome-launcher@2.0.0 │ ├─┬ fs-access@1.0.1 │ │ └── null-check@1.0.0 │ └─┬ which@1.2.12 │ └── isexe@1.1.2 ├─┬ karma-coffee-preprocessor@1.0.1 │ └── coffee-script@1.10.0 ├─┬ karma-coverage@1.1.1 │ ├── dateformat@1.0.12 │ ├─┬ istanbul@0.4.5 │ │ ├── abbrev@1.0.9 │ │ ├── async@1.5.2 │ │ ├─┬ escodegen@1.8.1 │ │ │ ├── estraverse@1.9.3 │ │ │ ├─┬ optionator@0.8.2 │ │ │ │ ├── deep-is@0.1.3 │ │ │ │ ├── fast-levenshtein@2.0.6 │ │ │ │ ├── levn@0.3.0 │ │ │ │ ├── prelude-ls@1.1.2 │ │ │ │ ├── type-check@0.3.2 │ │ │ │ └── wordwrap@1.0.0 │ │ │ └── source-map@0.2.0 │ │ ├── esprima@2.7.3 │ │ ├── glob@5.0.15 │ │ ├─┬ handlebars@4.0.6 │ │ │ └── source-map@0.4.4 │ │ ├─┬ js-yaml@3.5.5 │ │ │ └─┬ argparse@1.0.9 │ │ │ └── sprintf-js@1.0.3 │ │ ├── nopt@3.0.6 │ │ ├── supports-color@3.2.3 │ │ └── wordwrap@1.0.0 │ └── lodash@3.10.1 ├── karma-firefox-launcher@1.0.0 ├── karma-html2js-preprocessor@1.1.0 ├── karma-jasmine@1.1.0 ├─┬ karma-junit-reporter@1.2.0 │ └── xmlbuilder@8.2.2 ├── karma-ng-html2js-preprocessor@1.0.0 ├── karma-phantomjs-launcher@1.0.2 ├── karma-phantomjs-shim@1.4.0 ├── karma-requirejs@1.1.0 ├── karma-script-launcher@1.0.0 ├─┬ karma-webpack@2.0.2 │ ├── async@0.9.2 │ ├── lodash@3.10.1 │ └─┬ source-map@0.1.43 │ └── amdefine@1.0.1 ├─┬ less@2.7.2 │ ├─┬ errno@0.1.4 │ │ └── prr@0.0.0 │ ├── image-size@0.5.1 │ └─┬ promise@7.1.1 │ └── asap@2.0.5 ├── less-loader@2.2.3 ├── lodash@4.17.4 ├─┬ meanio@0.9.4 │ ├─┬ assetmanager@1.2.3 │ │ └─┬ grunt@1.0.1 │ │ ├── eventemitter2@0.4.14 │ │ ├─┬ findup-sync@0.3.0 │ │ │ └── glob@5.0.15 │ │ ├── glob@7.0.6 │ │ ├── grunt-cli@1.2.0 │ │ ├── grunt-known-options@1.1.0 │ │ ├─┬ grunt-legacy-log@1.0.0 │ │ │ ├─┬ grunt-legacy-log-utils@1.0.0 │ │ │ │ └── lodash@4.3.0 │ │ │ ├── hooker@0.2.3 │ │ │ ├── lodash@3.10.1 │ │ │ └── underscore.string@3.2.3 │ │ └─┬ grunt-legacy-util@1.0.0 │ │ ├── getobject@0.1.0 │ │ └── lodash@4.3.0 │ ├── complex-list@0.1.4 │ ├─┬ config@1.25.1 │ │ └── json5@0.4.0 │ ├── dependable-list@0.1.1 │ ├── errorhandler@1.5.0 │ ├── eventemitter2@1.0.0 │ ├─┬ express-jwt@5.1.0 │ │ ├── express-unless@0.3.0 │ │ └── lodash.set@4.3.2 │ ├── glob@5.0.15 │ ├── lazy-dependable@0.2.0 │ ├── lodash@4.17.4 │ ├─┬ md5@2.2.1 │ │ ├── charenc@0.0.2 │ │ ├── crypt@0.0.2 │ │ └── is-buffer@1.1.4 │ ├─┬ mongoose@4.8.3 │ │ ├── async@2.1.4 │ │ ├── bson@1.0.4 │ │ ├── hooks-fixed@1.2.0 │ │ ├── kareem@1.2.1 │ │ ├─┬ mongodb@2.2.24 │ │ │ └─┬ mongodb-core@2.1.8 │ │ │ └── require_optional@1.0.0 │ │ ├── mpath@0.2.1 │ │ ├── mpromise@0.5.5 │ │ ├─┬ mquery@2.2.3 │ │ │ ├── bluebird@2.10.2 │ │ │ ├─┬ debug@2.2.0 │ │ │ │ └── ms@0.7.1 │ │ │ └── sliced@0.0.5 │ │ ├── muri@1.2.1 │ │ ├── regexp-clone@0.0.1 │ │ └── sliced@1.0.1 │ ├─┬ morgan@1.5.3 │ │ ├── basic-auth@1.0.4 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ ├── depd@1.0.1 │ │ └─┬ on-finished@2.2.1 │ │ └── ee-first@1.1.0 │ ├── querystring@0.2.0 │ ├─┬ rtlcss@2.1.2 │ │ ├─┬ findup@0.1.5 │ │ │ ├── colors@0.6.2 │ │ │ └── commander@2.1.0 │ │ └── strip-json-comments@2.0.1 │ ├── socketio-sticky-session@0.4.2 │ └─┬ swig@1.4.2 │ └─┬ uglify-js@2.4.24 │ ├── async@0.2.10 │ ├── source-map@0.1.34 │ └─┬ yargs@3.5.4 │ ├── camelcase@1.2.1 │ └── window-size@0.1.0 ├─┬ mocha@3.2.0 │ ├── browser-stdout@1.3.0 │ ├─┬ commander@2.9.0 │ │ └── graceful-readlink@1.0.1 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── diff@1.4.0 │ ├── escape-string-regexp@1.0.5 │ ├── glob@7.0.5 │ ├── growl@1.9.2 │ ├── json3@3.3.2 │ ├─┬ lodash.create@3.1.1 │ │ └── lodash._basecreate@3.0.3 │ └─┬ supports-color@3.1.2 │ └── has-flag@1.0.0 ├─┬ morgan@1.8.1 │ └── basic-auth@1.1.0 ├─┬ node-sass@4.5.0 │ ├── async-foreach@0.1.3 │ ├─┬ gaze@1.1.2 │ │ └─┬ globule@1.1.0 │ │ └── lodash@4.16.6 │ ├── get-stdin@4.0.1 │ ├── in-publish@2.0.0 │ ├── lodash.assign@4.2.0 │ ├── lodash.clonedeep@4.5.0 │ ├── lodash.mergewith@4.6.0 │ ├─┬ meow@3.7.0 │ │ ├─┬ camelcase-keys@2.1.0 │ │ │ └── camelcase@2.1.1 │ │ ├─┬ loud-rejection@1.6.0 │ │ │ ├─┬ currently-unhandled@0.4.1 │ │ │ │ └── array-find-index@1.0.2 │ │ │ └── signal-exit@3.0.2 │ │ ├── map-obj@1.0.1 │ │ ├─┬ normalize-package-data@2.3.5 │ │ │ ├─┬ is-builtin-module@1.0.0 │ │ │ │ └── builtin-modules@1.1.1 │ │ │ └─┬ validate-npm-package-license@3.0.1 │ │ │ ├─┬ spdx-correct@1.0.2 │ │ │ │ └── spdx-license-ids@1.2.2 │ │ │ └── spdx-expression-parse@1.0.4 │ │ ├─┬ read-pkg-up@1.0.1 │ │ │ └─┬ read-pkg@1.1.0 │ │ │ ├─┬ load-json-file@1.1.0 │ │ │ │ ├─┬ parse-json@2.2.0 │ │ │ │ │ └─┬ error-ex@1.3.0 │ │ │ │ │ └── is-arrayish@0.2.1 │ │ │ │ └── strip-bom@2.0.0 │ │ │ └── path-type@1.1.0 │ │ ├─┬ redent@1.0.0 │ │ │ ├── indent-string@2.1.0 │ │ │ └── strip-indent@1.0.1 │ │ └── trim-newlines@1.0.0 │ ├── nan@2.5.1 │ ├─┬ node-gyp@3.5.0 │ │ ├── fstream@1.0.10 │ │ ├── osenv@0.1.4 │ │ └─┬ tar@2.2.1 │ │ └── block-stream@0.0.9 │ ├─┬ npmlog@4.0.2 │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ └── delegates@1.0.0 │ │ ├── console-control-strings@1.1.0 │ │ ├─┬ gauge@2.7.3 │ │ │ ├── aproba@1.1.1 │ │ │ ├── has-unicode@2.0.1 │ │ │ └── wide-align@1.1.0 │ │ └── set-blocking@2.0.0 │ ├─┬ sass-graph@2.1.2 │ │ └─┬ yargs@4.8.1 │ │ ├── cliui@3.2.0 │ │ ├── window-size@0.2.0 │ │ └─┬ yargs-parser@2.4.1 │ │ └── camelcase@3.0.0 │ └── stdout-stream@1.4.0 ├─┬ npm@3.10.10 │ ├── abbrev@1.0.9 │ ├── ansi-regex@2.0.0 │ ├── ansicolors@0.3.2 │ ├── ansistyles@0.1.3 │ ├── aproba@1.0.4 │ ├── archy@1.0.0 │ ├── asap@2.0.5 │ ├── chownr@1.0.1 │ ├── cmd-shim@2.0.2 │ ├─┬ columnify@1.5.4 │ │ └─┬ wcwidth@1.0.0 │ │ └─┬ defaults@1.0.3 │ │ └── clone@1.0.2 │ ├─┬ config-chain@1.1.11 │ │ └── proto-list@1.2.4 │ ├── debuglog@1.0.1 │ ├── dezalgo@1.0.3 │ ├── editor@1.0.0 │ ├── fs-vacuum@1.2.9 │ ├── fs-write-stream-atomic@1.0.8 │ ├── fstream@1.0.10 │ ├─┬ fstream-npm@1.2.0 │ │ └─┬ fstream-ignore@1.0.5 │ │ └─┬ minimatch@3.0.3 │ │ └─┬ brace-expansion@1.1.6 │ │ ├── balanced-match@0.4.2 │ │ └── concat-map@0.0.1 │ ├─┬ glob@7.1.0 │ │ ├── fs.realpath@1.0.0 │ │ ├─┬ minimatch@3.0.3 │ │ │ └─┬ brace-expansion@1.1.6 │ │ │ ├── balanced-match@0.4.2 │ │ │ └── concat-map@0.0.1 │ │ └── path-is-absolute@1.0.1 │ ├── graceful-fs@4.1.9 │ ├── has-unicode@2.0.1 │ ├── hosted-git-info@2.1.5 │ ├── iferr@0.1.5 │ ├── imurmurhash@0.1.4 │ ├── inflight@1.0.5 │ ├── inherits@2.0.3 │ ├── ini@1.3.4 │ ├─┬ init-package-json@1.9.4 │ │ ├─┬ glob@6.0.4 │ │ │ ├─┬ minimatch@3.0.3 │ │ │ │ └─┬ brace-expansion@1.1.6 │ │ │ │ ├── balanced-match@0.4.2 │ │ │ │ └── concat-map@0.0.1 │ │ │ └── path-is-absolute@1.0.0 │ │ └── promzard@0.3.0 │ ├── lockfile@1.0.2 │ ├── lodash._baseindexof@3.1.0 │ ├─┬ lodash._baseuniq@4.6.0 │ │ ├── lodash._createset@4.0.3 │ │ └── lodash._root@3.0.1 │ ├── lodash._bindcallback@3.0.1 │ ├── lodash._cacheindexof@3.0.2 │ ├── lodash._createcache@3.1.2 │ ├── lodash._getnative@3.9.1 │ ├── lodash.clonedeep@4.5.0 │ ├── lodash.restparam@3.6.1 │ ├── lodash.union@4.6.0 │ ├── lodash.uniq@4.5.0 │ ├── lodash.without@4.4.0 │ ├─┬ mkdirp@0.5.1 │ │ └── minimist@0.0.8 │ ├─┬ node-gyp@3.4.0 │ │ ├─┬ minimatch@3.0.3 │ │ │ └─┬ brace-expansion@1.1.6 │ │ │ ├── balanced-match@0.4.2 │ │ │ └── concat-map@0.0.1 │ │ ├─┬ npmlog@3.1.2 │ │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ │ └── delegates@1.0.0 │ │ │ ├── console-control-strings@1.1.0 │ │ │ ├─┬ gauge@2.6.0 │ │ │ │ ├── has-color@0.1.7 │ │ │ │ ├── object-assign@4.1.0 │ │ │ │ ├── signal-exit@3.0.0 │ │ │ │ ├─┬ string-width@1.0.2 │ │ │ │ │ ├─┬ code-point-at@1.0.0 │ │ │ │ │ │ └── number-is-nan@1.0.0 │ │ │ │ │ └─┬ is-fullwidth-code-point@1.0.0 │ │ │ │ │ └── number-is-nan@1.0.0 │ │ │ │ └── wide-align@1.1.0 │ │ │ └── set-blocking@2.0.0 │ │ └─┬ path-array@1.0.1 │ │ └─┬ array-index@1.0.0 │ │ ├─┬ debug@2.2.0 │ │ │ └── ms@0.7.1 │ │ └─┬ es6-symbol@3.1.0 │ │ ├── d@0.1.1 │ │ └─┬ es5-ext@0.10.12 │ │ └── es6-iterator@2.0.0 │ ├── nopt@3.0.6 │ ├── normalize-git-url@3.0.2 │ ├─┬ normalize-package-data@2.3.5 │ │ └─┬ is-builtin-module@1.0.0 │ │ └── builtin-modules@1.1.1 │ ├── npm-cache-filename@1.0.2 │ ├── npm-install-checks@3.0.0 │ ├── npm-package-arg@4.2.0 │ ├─┬ npm-registry-client@7.2.1 │ │ ├─┬ concat-stream@1.5.2 │ │ │ ├─┬ readable-stream@2.0.6 │ │ │ │ ├── core-util-is@1.0.2 │ │ │ │ ├── isarray@1.0.0 │ │ │ │ ├── process-nextick-args@1.0.7 │ │ │ │ ├── string_decoder@0.10.31 │ │ │ │ └── util-deprecate@1.0.2 │ │ │ └── typedarray@0.0.6 │ │ ├─┬ npmlog@3.1.2 │ │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ │ └── delegates@1.0.0 │ │ │ ├── console-control-strings@1.1.0 │ │ │ ├─┬ gauge@2.6.0 │ │ │ │ ├── has-color@0.1.7 │ │ │ │ ├── object-assign@4.1.0 │ │ │ │ ├── signal-exit@3.0.0 │ │ │ │ ├─┬ string-width@1.0.2 │ │ │ │ │ ├─┬ code-point-at@1.0.0 │ │ │ │ │ │ └── number-is-nan@1.0.0 │ │ │ │ │ └─┬ is-fullwidth-code-point@1.0.0 │ │ │ │ │ └── number-is-nan@1.0.0 │ │ │ │ └── wide-align@1.1.0 │ │ │ └── set-blocking@2.0.0 │ │ └── retry@0.10.0 │ ├── npm-user-validate@0.1.5 │ ├─┬ npmlog@4.0.0 │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ └── delegates@1.0.0 │ │ ├── console-control-strings@1.1.0 │ │ ├─┬ gauge@2.6.0 │ │ │ ├── has-color@0.1.7 │ │ │ ├── object-assign@4.1.0 │ │ │ ├── signal-exit@3.0.0 │ │ │ ├─┬ string-width@1.0.2 │ │ │ │ ├─┬ code-point-at@1.0.0 │ │ │ │ │ └── number-is-nan@1.0.0 │ │ │ │ └─┬ is-fullwidth-code-point@1.0.0 │ │ │ │ └── number-is-nan@1.0.0 │ │ │ └── wide-align@1.1.0 │ │ └── set-blocking@2.0.0 │ ├── once@1.4.0 │ ├── opener@1.4.2 │ ├─┬ osenv@0.1.3 │ │ ├── os-homedir@1.0.1 │ │ └── os-tmpdir@1.0.1 │ ├── path-is-inside@1.0.2 │ ├─┬ read@1.0.7 │ │ └── mute-stream@0.0.5 │ ├── read-cmd-shim@1.0.1 │ ├─┬ read-installed@4.0.3 │ │ └── util-extend@1.0.3 │ ├─┬ read-package-json@2.0.4 │ │ ├─┬ glob@6.0.4 │ │ │ ├─┬ minimatch@3.0.3 │ │ │ │ └─┬ brace-expansion@1.1.6 │ │ │ │ ├── balanced-match@0.4.2 │ │ │ │ └── concat-map@0.0.1 │ │ │ └── path-is-absolute@1.0.0 │ │ └─┬ json-parse-helpfulerror@1.0.3 │ │ └── jju@1.3.0 │ ├── read-package-tree@5.1.5 │ ├─┬ readable-stream@2.1.5 │ │ ├── buffer-shims@1.0.0 │ │ ├── core-util-is@1.0.2 │ │ ├── isarray@1.0.0 │ │ ├── process-nextick-args@1.0.7 │ │ ├── string_decoder@0.10.31 │ │ └── util-deprecate@1.0.2 │ ├── readdir-scoped-modules@1.0.2 │ ├── realize-package-specifier@3.0.3 │ ├─┬ request@2.75.0 │ │ ├── aws-sign2@0.6.0 │ │ ├── aws4@1.4.1 │ │ ├─┬ bl@1.1.2 │ │ │ └─┬ readable-stream@2.0.6 │ │ │ ├── core-util-is@1.0.2 │ │ │ ├── isarray@1.0.0 │ │ │ ├── process-nextick-args@1.0.7 │ │ │ ├── string_decoder@0.10.31 │ │ │ └── util-deprecate@1.0.2 │ │ ├── caseless@0.11.0 │ │ ├─┬ combined-stream@1.0.5 │ │ │ └── delayed-stream@1.0.0 │ │ ├── extend@3.0.0 │ │ ├── forever-agent@0.6.1 │ │ ├─┬ form-data@2.0.0 │ │ │ └── asynckit@0.4.0 │ │ ├─┬ har-validator@2.0.6 │ │ │ ├─┬ chalk@1.1.3 │ │ │ │ ├── ansi-styles@2.2.1 │ │ │ │ ├── escape-string-regexp@1.0.5 │ │ │ │ ├── has-ansi@2.0.0 │ │ │ │ └── supports-color@2.0.0 │ │ │ ├─┬ commander@2.9.0 │ │ │ │ └── graceful-readlink@1.0.1 │ │ │ ├─┬ is-my-json-valid@2.15.0 │ │ │ │ ├── generate-function@2.0.0 │ │ │ │ ├─┬ generate-object-property@1.2.0 │ │ │ │ │ └── is-property@1.0.2 │ │ │ │ ├── jsonpointer@4.0.0 │ │ │ │ └── xtend@4.0.1 │ │ │ └─┬ pinkie-promise@2.0.1 │ │ │ └── pinkie@2.0.4 │ │ ├─┬ hawk@3.1.3 │ │ │ ├── boom@2.10.1 │ │ │ ├── cryptiles@2.0.5 │ │ │ ├── hoek@2.16.3 │ │ │ └── sntp@1.0.9 │ │ ├─┬ http-signature@1.1.1 │ │ │ ├── assert-plus@0.2.0 │ │ │ ├─┬ jsprim@1.3.1 │ │ │ │ ├── extsprintf@1.0.2 │ │ │ │ ├── json-schema@0.2.3 │ │ │ │ └── verror@1.3.6 │ │ │ └─┬ sshpk@1.10.1 │ │ │ ├── asn1@0.2.3 │ │ │ ├── assert-plus@1.0.0 │ │ │ ├── bcrypt-pbkdf@1.0.0 │ │ │ ├── dashdash@1.14.0 │ │ │ ├── ecc-jsbn@0.1.1 │ │ │ ├── getpass@0.1.6 │ │ │ ├── jodid25519@1.0.2 │ │ │ ├── jsbn@0.1.0 │ │ │ └── tweetnacl@0.14.3 │ │ ├── is-typedarray@1.0.0 │ │ ├── isstream@0.1.2 │ │ ├── json-stringify-safe@5.0.1 │ │ ├─┬ mime-types@2.1.12 │ │ │ └── mime-db@1.24.0 │ │ ├── node-uuid@1.4.7 │ │ ├── oauth-sign@0.8.2 │ │ ├── qs@6.2.1 │ │ ├── stringstream@0.0.5 │ │ ├── tough-cookie@2.3.1 │ │ └── tunnel-agent@0.4.3 │ ├── retry@0.10.0 │ ├── rimraf@2.5.4 │ ├── semver@5.3.0 │ ├── sha@2.0.1 │ ├── slide@1.1.6 │ ├── sorted-object@2.0.1 │ ├── strip-ansi@3.0.1 │ ├─┬ tar@2.2.1 │ │ └── block-stream@0.0.8 │ ├── text-table@0.2.0 │ ├── uid-number@0.0.6 │ ├── umask@1.1.0 │ ├─┬ unique-filename@1.1.0 │ │ └── unique-slug@2.0.0 │ ├── unpipe@1.0.0 │ ├─┬ validate-npm-package-license@3.0.1 │ │ ├─┬ spdx-correct@1.0.2 │ │ │ └── spdx-license-ids@1.2.0 │ │ └─┬ spdx-expression-parse@1.0.2 │ │ ├── spdx-exceptions@1.0.4 │ │ └── spdx-license-ids@1.2.0 │ ├─┬ validate-npm-package-name@2.2.2 │ │ └── builtins@0.0.7 │ ├─┬ which@1.2.11 │ │ └── isexe@1.1.2 │ ├── wrappy@1.0.2 │ └── write-file-atomic@1.2.0 ├─┬ phantomjs-prebuilt@2.1.14 │ ├── es6-promise@4.0.5 │ ├─┬ extract-zip@1.5.0 │ │ ├─┬ concat-stream@1.5.0 │ │ │ ├── readable-stream@2.0.6 │ │ │ └── typedarray@0.0.6 │ │ ├── debug@0.7.4 │ │ ├─┬ mkdirp@0.5.0 │ │ │ └── minimist@0.0.8 │ │ └─┬ yauzl@2.4.1 │ │ └─┬ fd-slicer@1.0.1 │ │ └── pend@1.2.0 │ ├─┬ fs-extra@1.0.0 │ │ ├── jsonfile@2.4.0 │ │ └── klaw@1.3.1 │ ├── hasha@2.2.0 │ ├── kew@0.7.0 │ ├── progress@1.1.8 │ └─┬ request-progress@2.0.1 │ └── throttleit@1.0.0 ├─┬ protractor@5.1.1 invalid │ ├── @types/node@6.0.63 │ ├── @types/q@0.0.32 │ ├── @types/selenium-webdriver@2.53.39 │ ├── blocking-proxy@0.0.5 │ ├── jasminewd2@2.0.0 │ ├─┬ saucelabs@1.3.0 │ │ └─┬ https-proxy-agent@1.0.0 │ │ └─┬ agent-base@2.0.1 │ │ └── semver@5.0.3 │ ├─┬ selenium-webdriver@3.0.1 │ │ └── rimraf@2.5.4 │ ├── source-map-support@0.4.11 │ ├─┬ webdriver-js-extender@1.0.0 │ │ └─┬ selenium-webdriver@2.53.3 │ │ ├── adm-zip@0.4.4 │ │ ├── tmp@0.0.24 │ │ ├── ws@1.1.2 │ │ └─┬ xml2js@0.4.4 │ │ └── sax@0.6.1 │ └─┬ webdriver-manager@12.0.2 │ ├── adm-zip@0.4.7 │ ├── ini@1.3.4 │ ├── rimraf@2.5.4 │ └─┬ xml2js@0.4.17 │ ├── sax@1.2.2 │ └── xmlbuilder@4.2.1 ├── q@1.4.1 ├─┬ request@2.79.0 │ ├── aws-sign2@0.6.0 │ ├── aws4@1.6.0 │ ├── caseless@0.11.0 │ ├─┬ combined-stream@1.0.5 │ │ └── delayed-stream@1.0.0 │ ├── extend@3.0.0 │ ├── forever-agent@0.6.1 │ ├─┬ form-data@2.1.2 │ │ └── asynckit@0.4.0 │ ├─┬ har-validator@2.0.6 │ │ └─┬ is-my-json-valid@2.15.0 │ │ ├── generate-function@2.0.0 │ │ ├─┬ generate-object-property@1.2.0 │ │ │ └── is-property@1.0.2 │ │ └── jsonpointer@4.0.1 │ ├─┬ hawk@3.1.3 │ │ ├── boom@2.10.1 │ │ ├── cryptiles@2.0.5 │ │ └── sntp@1.0.9 │ ├─┬ http-signature@1.1.1 │ │ ├── assert-plus@0.2.0 │ │ ├─┬ jsprim@1.3.1 │ │ │ ├── extsprintf@1.0.2 │ │ │ ├── json-schema@0.2.3 │ │ │ └── verror@1.3.6 │ │ └─┬ sshpk@1.10.2 │ │ ├── asn1@0.2.3 │ │ ├── assert-plus@1.0.0 │ │ ├── bcrypt-pbkdf@1.0.1 │ │ ├─┬ dashdash@1.14.1 │ │ │ └── assert-plus@1.0.0 │ │ ├── ecc-jsbn@0.1.1 │ │ ├─┬ getpass@0.1.6 │ │ │ └── assert-plus@1.0.0 │ │ ├── jodid25519@1.0.2 │ │ ├── jsbn@0.1.1 │ │ └── tweetnacl@0.14.5 │ ├── is-typedarray@1.0.0 │ ├── isstream@0.1.2 │ ├── json-stringify-safe@5.0.1 │ ├── mime-types@2.1.14 │ ├── oauth-sign@0.8.2 │ ├── qs@6.3.1 │ ├── stringstream@0.0.5 │ ├─┬ tough-cookie@2.3.2 │ │ └── punycode@1.4.1 │ ├── tunnel-agent@0.4.3 │ └── uuid@3.0.1 ├── require-dir@0.3.1 ├── requirejs@2.3.2 ├─┬ sass-loader@6.0.0 │ ├── async@2.1.4 │ └── lodash.tail@4.1.1 ├─┬ shelljs@0.7.6 │ └── rechoir@0.6.2 ├─┬ snyk@1.25.0 │ ├── abbrev@1.1.0 │ ├── ansi-escapes@1.4.0 │ ├─┬ configstore@1.4.0 │ │ ├── uuid@2.0.3 │ │ ├─┬ write-file-atomic@1.3.1 │ │ │ ├── imurmurhash@0.1.4 │ │ │ └── slide@1.1.6 │ │ └── xdg-basedir@2.0.0 │ ├── es6-promise@3.2.1 │ ├── hasbin@1.2.3 │ ├─┬ inquirer@1.0.3 │ │ ├─┬ cli-cursor@1.0.2 │ │ │ └─┬ restore-cursor@1.0.1 │ │ │ ├── exit-hook@1.1.1 │ │ │ └── onetime@1.1.0 │ │ ├── cli-width@2.1.0 │ │ ├── figures@1.7.0 │ │ ├── mute-stream@0.0.6 │ │ ├─┬ run-async@2.3.0 │ │ │ └── is-promise@2.1.0 │ │ ├── rx@4.1.0 │ │ └─┬ string-width@1.0.2 │ │ ├── code-point-at@1.1.0 │ │ └─┬ is-fullwidth-code-point@1.0.0 │ │ └── number-is-nan@1.0.1 │ ├── open@0.0.5 │ ├─┬ os-name@1.0.3 │ │ ├── osx-release@1.1.0 │ │ └── win-release@1.1.1 │ ├── semver@5.3.0 │ ├─┬ snyk-config@1.0.1 │ │ └─┬ nconf@0.7.2 │ │ ├── async@0.9.2 │ │ └─┬ yargs@3.15.0 │ │ ├── camelcase@1.2.1 │ │ └── window-size@0.1.4 │ ├─┬ snyk-module@1.7.0 │ │ ├── hosted-git-info@2.2.0 │ │ └─┬ validate-npm-package-name@2.2.2 │ │ └── builtins@0.0.7 │ ├── snyk-policy@1.7.0 │ ├─┬ snyk-recursive-readdir@2.0.0 │ │ └── minimatch@3.0.2 │ ├── snyk-resolve@1.0.0 │ ├─┬ snyk-resolve-deps@1.7.0 │ │ ├── ansicolors@0.3.2 │ │ └─┬ clite@0.3.0 │ │ ├── lodash.defaults@4.2.0 │ │ ├── lodash.defaultsdeep@4.6.0 │ │ ├─┬ update-notifier@0.6.3 │ │ │ ├─┬ boxen@0.3.1 │ │ │ │ ├── filled-array@1.1.0 │ │ │ │ └── widest-line@1.0.0 │ │ │ ├─┬ configstore@2.1.0 │ │ │ │ ├─┬ dot-prop@3.0.0 │ │ │ │ │ └── is-obj@1.0.1 │ │ │ │ └── uuid@2.0.3 │ │ │ └─┬ latest-version@2.0.0 │ │ │ └─┬ package-json@2.4.0 │ │ │ ├─┬ got@5.7.1 │ │ │ │ ├─┬ create-error-class@3.0.2 │ │ │ │ │ └── capture-stack-trace@1.0.0 │ │ │ │ ├── duplexer2@0.1.4 │ │ │ │ ├── is-retry-allowed@1.1.0 │ │ │ │ ├── node-status-codes@1.0.0 │ │ │ │ ├── timed-out@3.1.3 │ │ │ │ ├── unzip-response@1.0.2 │ │ │ │ └── url-parse-lax@1.0.0 │ │ │ └── registry-auth-token@3.1.0 │ │ └─┬ yargs@4.8.1 │ │ ├── cliui@3.2.0 │ │ └── window-size@0.2.0 │ ├── snyk-tree@1.0.0 │ ├── snyk-try-require@1.2.0 │ ├─┬ tempfile@1.1.1 │ │ └── uuid@2.0.3 │ ├── then-fs@2.0.0 │ ├── undefsafe@0.0.3 │ ├─┬ update-notifier@0.5.0 │ │ ├── is-npm@1.0.0 │ │ ├─┬ latest-version@1.0.1 │ │ │ └─┬ package-json@1.2.0 │ │ │ ├─┬ got@3.3.1 │ │ │ │ ├─┬ duplexify@3.5.0 │ │ │ │ │ ├─┬ end-of-stream@1.0.0 │ │ │ │ │ │ └── once@1.3.3 │ │ │ │ │ └── stream-shift@1.0.0 │ │ │ │ ├── infinity-agent@2.0.3 │ │ │ │ ├── is-redirect@1.0.0 │ │ │ │ ├── lowercase-keys@1.0.0 │ │ │ │ ├── nested-error-stacks@1.0.2 │ │ │ │ ├── object-assign@3.0.0 │ │ │ │ ├── read-all-stream@3.1.0 │ │ │ │ └── timed-out@2.0.0 │ │ │ └─┬ registry-url@3.1.0 │ │ │ └─┬ rc@1.1.6 │ │ │ ├── deep-extend@0.4.1 │ │ │ └── strip-json-comments@1.0.4 │ │ ├─┬ repeating@1.1.3 │ │ │ └── is-finite@1.0.2 │ │ └── semver-diff@2.1.0 │ └─┬ url@0.11.0 │ └── punycode@1.3.2 ├── style-loader@0.13.1 ├─┬ supertest@3.0.0 │ └─┬ superagent@3.4.3 │ ├── component-emitter@1.2.1 │ ├── cookiejar@2.1.0 │ └── formidable@1.1.1 ├── through@2.3.8 ├─┬ url-loader@0.5.7 │ └── mime@1.2.11 ├── view-helpers@0.1.5 ├─┬ webpack@2.2.1 │ ├── acorn@4.0.11 │ ├── acorn-dynamic-import@2.0.1 │ ├─┬ ajv@4.11.3 │ │ ├── co@4.6.0 │ │ └─┬ json-stable-stringify@1.0.1 │ │ └── jsonify@0.0.0 │ ├── ajv-keywords@1.5.1 │ ├── async@2.1.4 │ ├── enhanced-resolve@3.1.0 │ ├── json-loader@0.5.4 │ ├── loader-runner@2.3.0 │ ├── memory-fs@0.4.1 │ ├─┬ node-libs-browser@2.0.0 │ │ ├── assert@1.4.1 │ │ ├─┬ browserify-zlib@0.1.4 │ │ │ └── pako@0.2.9 │ │ ├─┬ buffer@4.9.1 │ │ │ ├── base64-js@1.2.0 │ │ │ └── ieee754@1.1.8 │ │ ├── constants-browserify@1.0.0 │ │ ├─┬ crypto-browserify@3.11.0 │ │ │ ├─┬ browserify-cipher@1.0.0 │ │ │ │ ├─┬ browserify-aes@1.0.6 │ │ │ │ │ └── buffer-xor@1.0.3 │ │ │ │ ├─┬ browserify-des@1.0.0 │ │ │ │ │ └── des.js@1.0.0 │ │ │ │ └── evp_bytestokey@1.0.0 │ │ │ ├─┬ browserify-sign@4.0.0 │ │ │ │ ├── bn.js@4.11.6 │ │ │ │ ├── browserify-rsa@4.0.1 │ │ │ │ ├─┬ elliptic@6.3.3 │ │ │ │ │ ├── brorand@1.0.7 │ │ │ │ │ └── hash.js@1.0.3 │ │ │ │ └─┬ parse-asn1@5.0.0 │ │ │ │ └── asn1.js@4.9.1 │ │ │ ├── create-ecdh@4.0.0 │ │ │ ├─┬ create-hash@1.1.2 │ │ │ │ ├── cipher-base@1.0.3 │ │ │ │ ├── ripemd160@1.0.1 │ │ │ │ └── sha.js@2.4.8 │ │ │ ├── create-hmac@1.1.4 │ │ │ ├─┬ diffie-hellman@5.0.2 │ │ │ │ └── miller-rabin@4.0.0 │ │ │ ├── pbkdf2@3.0.9 │ │ │ ├── public-encrypt@4.0.0 │ │ │ └── randombytes@2.0.3 │ │ ├── domain-browser@1.1.7 │ │ ├── events@1.1.1 │ │ ├── https-browserify@0.0.1 │ │ ├── os-browserify@0.2.1 │ │ ├── path-browserify@0.0.0 │ │ ├── process@0.11.9 │ │ ├── querystring-es3@0.2.1 │ │ ├── stream-browserify@2.0.1 │ │ ├─┬ stream-http@2.6.3 │ │ │ ├── builtin-status-codes@3.0.0 │ │ │ └── to-arraybuffer@1.0.1 │ │ ├── string_decoder@0.10.31 │ │ ├─┬ timers-browserify@2.0.2 │ │ │ └── setimmediate@1.0.5 │ │ ├── tty-browserify@0.0.0 │ │ ├─┬ util@0.10.3 │ │ │ └── inherits@2.0.1 │ │ └── vm-browserify@0.0.4 │ ├── supports-color@3.2.3 │ ├── tapable@0.2.6 │ ├─┬ watchpack@1.2.1 │ │ └── async@2.1.4 │ ├── webpack-sources@0.1.4 │ └─┬ yargs@6.6.0 │ ├── camelcase@3.0.0 │ ├─┬ cliui@3.2.0 │ │ └── wrap-ansi@2.1.0 │ ├── get-caller-file@1.0.2 │ ├─┬ os-locale@1.4.0 │ │ └─┬ lcid@1.0.0 │ │ └── invert-kv@1.0.0 │ ├── require-directory@2.1.1 │ ├── require-main-filename@1.0.1 │ ├── which-module@1.0.0 │ ├── y18n@3.2.1 │ └── yargs-parser@4.2.1 ├── webpack-dev-middleware@1.10.0 ├─┬ webpack-dev-server@2.3.0 │ ├── ansi-html@0.0.7 │ ├── connect-history-api-fallback@1.3.0 │ ├── html-entities@1.2.0 │ ├─┬ http-proxy-middleware@0.17.3 │ │ └─┬ is-glob@3.1.0 │ │ └── is-extglob@2.1.1 │ ├── opn@4.0.2 │ ├── portfinder@1.0.13 │ ├─┬ serve-index@1.8.0 │ │ ├── batch@0.5.3 │ │ └─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├─┬ sockjs@0.3.18 │ │ ├── faye-websocket@0.10.0 │ │ └── uuid@2.0.3 │ ├─┬ sockjs-client@1.1.1 │ │ ├─┬ eventsource@0.1.6 │ │ │ └─┬ original@1.0.0 │ │ │ └── url-parse@1.0.5 │ │ ├── faye-websocket@0.11.1 │ │ └─┬ url-parse@1.1.7 │ │ └── querystringify@0.0.4 │ ├─┬ spdy@3.4.4 │ │ ├── handle-thing@1.2.5 │ │ ├── http-deceiver@1.2.7 │ │ ├── select-hose@2.0.0 │ │ └─┬ spdy-transport@2.0.18 │ │ ├── hpack.js@2.1.6 │ │ ├── obuf@1.1.1 │ │ └─┬ wbuf@1.7.2 │ │ └── minimalistic-assert@1.0.0 │ ├─┬ strip-ansi@3.0.1 │ │ └── ansi-regex@2.1.1 │ ├── supports-color@3.2.3 │ └─┬ yargs@6.6.0 │ ├── camelcase@3.0.0 │ ├── cliui@3.2.0 │ └── yargs-parser@4.2.1 ├─┬ webpack-hot-middleware@2.17.0 │ └── ansi-html@0.0.6 └─┬ webpack-stream@3.2.0 ├── lodash.clone@4.5.0 ├── lodash.some@4.6.0 ├── memory-fs@0.3.0 ├── vinyl@1.2.0 └─┬ webpack@1.14.0 ├── acorn@3.3.0 ├─┬ enhanced-resolve@0.9.1 │ └── memory-fs@0.2.0 ├── interpret@0.6.6 ├─┬ node-libs-browser@0.7.0 │ └─┬ crypto-browserify@3.3.0 │ ├── browserify-aes@0.4.0 │ ├── pbkdf2-compat@2.0.1 │ ├── ripemd160@0.2.0 │ └── sha.js@2.2.6 ├── supports-color@3.2.3 ├── tapable@0.1.10 ├─┬ watchpack@0.2.9 │ └── async@0.9.2 └─┬ webpack-core@0.6.9 └── source-map@0.4.4 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.0.17: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) npm WARN angular-material@1.1.3 requires a peer of angular@>=1.3 <1.6 but none was installed. npm WARN angular-material@1.1.3 requires a peer of angular-animate@>=1.3 <1.6 but none was installed. npm WARN angular-material@1.1.3 requires a peer of angular-aria@>=1.3 <1.6 but none was installed. |
Then run ‘gulp’ to run the server
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
teddy@teddy-K43SJ:~/Documents/node/test-project$ gulp Invoking gulp - development [15:22:46] Using gulpfile ~/Documents/node/test-project/gulpfile.js [15:22:46] Starting 'clean'... [15:22:46] Finished 'clean' after 9.35 ms [15:22:46] Starting 'default'... [15:22:46] Starting 'env:development'... [15:22:46] Finished 'env:development' after 72 μs [15:22:46] Starting 'jshint'... [15:22:46] Finished 'jshint' after 316 ms [15:22:46] Starting 'csslint'... [15:22:46] Starting 'watch'... [15:22:47] Finished 'watch' after 181 ms [15:22:47] Starting 'webpack'... [15:22:47] csslint: 1 files lint free [15:22:47] Finished 'csslint' after 1.03 s [15:22:59] Version: webpack 1.14.0 Asset Size Chunks Chunk Names app.js 4.54 MB 0 [emitted] main [15:22:59] webpack is watching for changes [15:22:59] Finished 'webpack' after 13 s [15:22:59] Starting 'devServe'... [15:22:59] Finished 'devServe' after 73 ms [15:22:59] Starting 'development'... [15:22:59] Finished 'development' after 5.86 μs [15:23:02] [nodemon] 1.11.0 [15:23:02] [nodemon] to restart at any time, enter `rs` [15:23:02] [nodemon] watching: *.* [15:23:02] [nodemon] starting `node --debug server.js` Debugger listening on [::]:5858 Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). defaultData() has been deprecated. Update to setDefaults(data) Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Thu, 16 Feb 2017 08:23:05 GMT cluster MEAN app started on port 3000 (development) with cluster worker id 0 [15:23:07] index.html reloaded. GET /socket.io/?EIO=3&transport=polling&t=Lf619Ba 200 - - 56.685 ms POST /socket.io/?EIO=3&transport=polling&t=Lf619DC 404 - - 9.815 ms [15:23:13] jshint: 28 files lint free GET /socket.io/?EIO=3&transport=polling&t=Lf61AfK 200 - - 1.438 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61AfU 404 - - 1.306 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61C74 200 - - 1.699 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61C7G 404 - - 2.160 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Daq 200 - - 2.243 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61Db5 404 - - 2.488 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61F2a 200 - - 1.897 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61F2o 404 - - 0.963 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61GWJ 200 - - 1.065 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61GWX 404 - - 1.893 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61H-3 200 - - 1.611 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61H-S 404 - - 1.421 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61JRq 200 - - 3.810 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61JSF 404 - - 1.609 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Kva 200 - - 2.239 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61Kw6 404 - - 1.452 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61MNK 200 - - 5.222 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61MNk 404 - - 2.492 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Nr4 200 - - 5.446 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61NrT 404 - - 4.813 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61PIp 200 - - 2.871 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61PJ4 404 - - 1.539 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Qma 200 - - 2.414 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61Qmq 404 - - 1.654 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61SEK 200 - - 3.483 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61SEg 404 - - 1.654 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Ti5 200 - - 2.680 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61TiO 404 - - 2.067 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61V9s 200 - - 1.938 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61VA1 404 - - 1.413 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Wda 200 - - 6.491 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61Wdz 404 - - 1.906 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61Y5K 200 - - 2.208 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61Y5Z 404 - - 1.000 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61ZZ4 200 - - 2.313 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61ZZM 404 - - 2.563 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61b0q 200 - - 3.935 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61b1A 404 - - 1.689 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61cUZ 200 - - 2.085 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61cUq 404 - - 1.046 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61dyK 200 - - 1.415 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61dyY 404 - - 0.882 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61fQ4 200 - - 8.735 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61fQN 404 - - 1.320 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61gtp 200 - - 1.147 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61gu2 404 - - 0.976 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61iLa 200 - - 1.504 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61iLo 404 - - 1.128 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61jpJ 200 - - 2.015 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61jpc 404 - - 3.928 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61lH4 200 - - 2.187 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61lHL 404 - - 1.261 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61mkq 200 - - 1.423 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61ml5 404 - - 1.278 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61oCb 200 - - 2.010 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61oCt 404 - - 1.749 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61pgK 200 - - 0.947 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61pgY 404 - - 0.967 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61r83 200 - - 0.932 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61r8C 404 - - 2.177 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61sbp 200 - - 1.130 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61sby 404 - - 1.404 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61u3b 200 - - 0.945 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61u3n 404 - - 6.387 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61vXJ 200 - - 2.689 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61vXX 404 - - 0.623 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61w_4 200 - - 1.391 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61w_I 404 - - 1.869 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61ySp 200 - - 1.329 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61yT0 404 - - 0.889 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61zwa 200 - - 1.453 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61zwp 404 - - 1.318 ms GET /socket.io/?EIO=3&transport=polling&t=Lf61_OK 200 - - 1.788 ms POST /socket.io/?EIO=3&transport=polling&t=Lf61_OZ 404 - - 1.891 ms GET /socket.io/?EIO=3&transport=polling&t=Lf620s4 200 - - 1.349 ms POST /socket.io/?EIO=3&transport=polling&t=Lf620sL 404 - - 5.019 ms GET /socket.io/?EIO=3&transport=polling&t=Lf622Jq 200 - - 2.258 ms POST /socket.io/?EIO=3&transport=polling&t=Lf622KC 404 - - 1.685 ms GET /socket.io/?EIO=3&transport=polling&t=Lf623na 200 - - 2.064 ms POST /socket.io/?EIO=3&transport=polling&t=Lf623nr 404 - - 1.132 ms GET /socket.io/?EIO=3&transport=polling&t=Lf625FL 200 - - 1.370 ms POST /socket.io/?EIO=3&transport=polling&t=Lf625FX 404 - - 1.286 ms GET /socket.io/?EIO=3&transport=polling&t=Lf626j4 200 - - 1.280 ms POST /socket.io/?EIO=3&transport=polling&t=Lf626jE 404 - - 1.208 ms GET /socket.io/?EIO=3&transport=polling&t=Lf628Ar 200 - - 0.941 ms POST /socket.io/?EIO=3&transport=polling&t=Lf628B0 404 - - 0.635 ms GET /socket.io/?EIO=3&transport=polling&t=Lf629ea 200 - - 1.318 ms POST /socket.io/?EIO=3&transport=polling&t=Lf629eo 404 - - 1.163 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62B6K 200 - - 1.577 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62B6h 404 - - 1.042 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62Ca5 200 - - 1.305 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62CaM 404 - - 1.272 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62E1q 200 - - 1.466 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62E27 404 - - 1.142 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62FVa 200 - - 1.957 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62FVp 404 - - 1.004 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62GzL 200 - - 1.493 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62Gzb 404 - - 1.374 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62IR4 200 - - 0.586 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62IRE 404 - - 0.603 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62Juq 200 - - 4.109 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62Jv7 404 - - 1.747 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62LMa 200 - - 1.525 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62LMm 404 - - 0.978 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62MqK 200 - - 1.503 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62Mqb 404 - - 0.735 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62OI4 200 - - 1.489 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62OIK 404 - - 1.088 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62Plr 200 - - 1.580 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62Pm6 404 - - 1.171 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62RDa 200 - - 1.433 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62RDs 404 - - 1.818 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62ShK 200 - - 0.992 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62ShW 404 - - 0.600 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62U94 200 - - 0.695 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62U9E 404 - - 0.599 ms GET /socket.io/?EIO=3&transport=polling&t=Lf62VcR 200 - - 0.904 ms POST /socket.io/?EIO=3&transport=polling&t=Lf62Vcj 404 - - 2.225 ms GET / 200 - - 1.186 ms GET /_getModules 200 335 - 1.347 ms Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). GET /api/get-public-config 200 159 - 1.304 ms GET /api/users/me 200 0 - 0.543 ms GET /admin/views/index.html 200 595 - 9.418 ms ... |
OR run ‘node server’
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
teddy@teddy-K43SJ:~/Documents/node/test-project$ node server Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). defaultData() has been deprecated. Update to setDefaults(data) Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). defaultData() has been deprecated. Update to setDefaults(data) Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). defaultData() has been deprecated. Update to setDefaults(data) Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). defaultData() has been deprecated. Update to setDefaults(data) Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). GET / 200 - - 63.339 ms GET /_getModules 304 - - 2.529 ms Meanio.loadConfig() has been deprecated. Update to Meanio.getConfig(). GET /api/get-public-config 304 - - 1.793 ms GET /api/users/me 304 - - 0.994 ms GET /meanStarter/views/system/header.html 304 - - 8.471 ms GET /meanStarter/views/system/index.html 304 - - 2.787 ms GET /admin/views/index.html 304 - - 22.101 ms GET /api/admin/menu/account 304 - - 2.156 ms GET /api/admin/menu/main 304 - - 8.014 ms GET /meanStarter/assets/img/logo.png 304 - - 2.359 ms GET /meanStarter/assets/img/woman_ninja_forg_pass.png 304 - - 1.326 ms GET /api/admin/menu/admin 304 - - 1.441 ms GET /favicon.ico 200 - - 3.870 ms ... |
HERE IS THE LOOKS (http://localhost:3000/)
WHICH ONE I SHOULD CHOOSE????
WHY THE PROJECTS SIZE IS VERY BIG (MORE THAN 250MB EACH)???
HOW ABOUT MERN VS MEAN ??? (R=ReactJS INSTEAD OF A=AngularJS) Pros AND Cons???