-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "simply-react",
"version": "0.0.5",
"description": "React boilerplate with webpack 4",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.config.js --mode=development --open",
"build": "webpack --mode=production"
},
"bin": {
"simply-react": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adantoscano/simply-react.git"
},
"keywords": [
"react",
"boilerplate"
],
"author": "Adán Toscano",
"license": "MIT",
"bugs": {
"url": "https://github.com/adantoscano/simply-react/issues"
},
"homepage": "https://github.com/adantoscano/simply-react#readme",
"dependencies": {
"prompts": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^3.2.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-hot-loader": "^4.6.5",
"style-loader": "^1.1.3",
"url-loader": "^3.0.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}