-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 KB
/
package.json
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
{
"name": "my-react-starter",
"version": "0.1.0",
"description": "My starter code for react applications",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdithyaBhat17/my-react-starter.git"
},
"keywords": [
"React",
"Webpack",
"babel",
"boilerplate"
],
"author": "Adithya NR",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdithyaBhat17/my-react-starter/issues"
},
"homepage": "https://github.com/AdithyaBhat17/my-react-starter#readme",
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.10.2"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"@babel/core": "^7.6.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"markdown-loader": "^5.0.0",
"style-loader": "^0.23.1",
"url-loader": "^2.2.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}