-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
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
{
"name": "basic-react-app",
"version": "1.0.0",
"description": "Simple basic app with react, react-router, sass, webpack, babel7",
"main": "index.js",
"scripts": {
"test": "webpack-dev-server",
"build": "webpack --mode production",
"dev": "webpack-dev-server --open --mode development"
},
"bin": {
"basic-react-app": "./cli.js"
},
"keywords": [
"react"
],
"author": "Michael Mendoza <iammichaelmendoza@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"file-loader": "^2.0.0",
"fs-extra": "^7.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"normalize.css": "^8.0.1",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-router-dom": "^4.3.1"
}
}