This repository was archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-starter",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mebinrobin/react-starter.git"
},
"bugs": {
"url": "https://github.com/mebinrobin/react-starter/issues"
},
"homepage": "https://github.com/mebinrobin/react-starter#readme",
"description": "",
"scripts": {
"build": "webpack --config ./config/webpack.config.js --env.production",
"start": "webpack-dev-server --config ./config/webpack.config.js --env.development"
},
"author": {
"name": "Mebin Robin",
"url": "https://www.mebinrobin.com"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^6.0.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"sass-loader": "^12.1.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"terser-webpack-plugin": "^5.0.0",
"webpack": "^5.0.0-beta.14",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.1"
},
"browserslist": [
">0.1%",
"not dead"
]
}