-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 869 Bytes
/
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
{
"name": "react-tutorial",
"version": "1.0.0",
"description": "A step by step tutorial for react",
"main": "index.js",
"scripts": {
"build-dev": "webpack --config webpack.development.config.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:react-class/react-step-by-step-tutorial.git"
},
"author": "Irfan Baqui",
"license": "MIT",
"dependencies": {
"react": "^0.14.8",
"react-dom": "^0.14.8"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}