-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 KB
/
package.json
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
{
"name": "webpack-react",
"version": "0.0.1",
"description": "A Webpack sample project, configured for ES6 React and SASS",
"main": "index.js",
"scripts": {
"start": "http-server -p 3000 .",
"build": "NODE_ENV=production webpack -p",
"watch": "webpack-dev-server --hot --progress --colors"
},
"repository": {
"type": "git",
"url": "[email protected]:jpetitcolas/webpack-react.git"
},
"keywords": [
"webpack",
"react",
"ecmascript6",
"react-hot-loader",
"sass"
],
"author": "Jonathan Petitcolas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpetitcolas/webpack-react/issues"
},
"homepage": "https://github.com/jpetitcolas/webpack-react",
"devDependencies": {
"css-loader": "^0.12.0",
"extract-text-webpack-plugin": "^1.0.1",
"http-server": "^0.8.0",
"jsx-loader": "^0.13.2",
"node-libs-browser": "^0.5.0",
"node-sass": "^2.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^1.3.0",
"sass-loader": "^0.5.0",
"style-loader": "^0.12.2",
"webpack": "^1.9.5",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"babel-core": "^5.3.3",
"babel-loader": "^5.0.0"
}
}