-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 786 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
{
"name": "react-tutorial",
"version": "0.0.1",
"description": "React tutorial using ES6, webpack and docker",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack -d --watch",
"dev-server": "webpack-dev-server --host 0.0.0.0 --port 8080 --progress --colors",
"build": "webpack -p"
},
"keywords": [
"docker",
"react",
"webpack",
"es6"
],
"author": "Adim",
"license": "ISC",
"dependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel-core": "~6.7.*",
"babel-loader": "~6.2.*",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}