-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnpm-commands.txt
More file actions
28 lines (19 loc) · 816 Bytes
/
npm-commands.txt
File metadata and controls
28 lines (19 loc) · 816 Bytes
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
npm init
npm install --save react@16.2.0 react-dom@16.2.0
npm install --save react react-dom
npm install --save-dev webpack@4.2.0 webpack-cli@2.0.13
npm install --save-dev webpack webpack-cli
npm install --save-dev babel-core@6.26.0 babel-loader@7.1.4 babel-preset-react@6.24.1
npm install --save-dev babel-core babel-loader babel-preset-react
npm run webpack
npm run webpack-watch
npm install --save material-ui@0.19.4/core
npm install --save @material-ui/core
npm install --save @material-ui/icons
npm install --save-dev babel-jest enzyme jest babel-preset-env enzyme-adapter-react react-test-renderer
//For Jest
npm install @babel/core --save-dev
npm install @babel/preset-env --save-dev
npm install @babel/preset-react --save-dev
//webpack was failing.
npm install babel-core@^7.0.0-bridge.0 --save-dev