forked from sivakumarsc/react-basic-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 899 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 899 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
33
34
35
36
37
{
"name": "react-redux-basic",
"version": "1.0.0",
"description": "A basic setup for redux with react",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scsiva1991/react-basic-setup.git"
},
"keywords": [
"react",
"redux",
"webpack"
],
"author": "scsiva1991",
"license": "MIT",
"bugs": {
"url": "https://github.com/scsiva1991/react-basic-setup/issues"
},
"homepage": "https://github.com/scsiva1991/react-basic-setup#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"html-webpack-plugin": "^2.26.0",
"webpack": "^2.3.3"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"webpack-dev-server": "^2.4.2"
}
}