-
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) · 936 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 936 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": "webpack_react_boilerplate_tutorial",
"version": "1.0.0",
"description": "Tutorial for setting up React with Webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"test": "test",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dillonjay/webpack_react_boilerplate_tutorial.git"
},
"author": "Dillon Lundell",
"license": "MIT",
"homepage": "https://github.com/Dillonjay/webpack_react_boilerplate_tutorial#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"html-webpack-template": "^6.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.14.1"
}
}