-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 779 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 779 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
29
30
31
32
33
34
{
"name": "minimal-react-webpack-babel-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --config ./webpack.config.js",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^8.0.4",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"react-hot-loader": "^4.3.11",
"webpack": "^4.22.0",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"babel-preset-env": "^1.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}