mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-15 12:12:58 +00:00
27 lines
630 B
Bash
Executable File
27 lines
630 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# use nvm instead of brew node or anything else
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
|
|
nvm install 6.9.2
|
|
nvm use 6.9.2
|
|
nvm alias default 6.9.2
|
|
curl -L https://www.npmjs.com/install.sh | sh
|
|
|
|
npm update -g
|
|
|
|
npm install -g npm
|
|
npm install -g caniuse-cmd
|
|
npm install -g diff-so-fancy
|
|
npm install -g eslint
|
|
npm install -g fkill-cli
|
|
npm install -g gulp
|
|
npm install -g jsonlint
|
|
npm install -g lighthouse
|
|
npm install -g np
|
|
npm install -g npm-check-updates
|
|
npm install -g pure-prompt
|
|
npm install -g sass-lint
|
|
npm install -g trash-cli
|
|
npm install -g vtop
|
|
npm install -g yarn
|