-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 756 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 756 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
{
"name": "kanban_app",
"version": "1.0.0",
"description": "survivejs.com/webpack_react/getting_started/",
"main": "index.js",
"scripts": {
"build": "TARGET=build webpack",
"start": "TARGET=dev webpack-dev-server --devtool eval --progress --colors --hot --inline --history-api-fallback"
},
"author": "Mikael Carpenter",
"license": "ISC",
"devDependencies": {
"babel-core": "^5.7.2",
"babel-loader": "^5.3.2",
"css-loader": "^0.15.4",
"html-webpack-plugin": "^1.6.0",
"node-libs-browser": "^0.5.2",
"react-hot-loader": "^1.2.8",
"style-loader": "^0.12.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1",
"webpack-merge": "^0.1.2"
},
"dependencies": {
"react": "^0.13.3"
}
}