forked from tylermcginnis/Redux-Curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "redux-immutable-curriculum",
"version": "1.0.0",
"description": "<img src=\"https://cloud.githubusercontent.com/assets/2933430/21000144/6e6cfa86-bcd6-11e6-950c-149059841f19.png\" width=\"250\" align=\"right\">",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"production": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthotsang/Redux-Immutable-Curriculum.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anthotsang/Redux-Immutable-Curriculum/issues"
},
"homepage": "https://github.com/anthotsang/Redux-Immutable-Curriculum#readme",
"dependencies": {
"firebase": "^3.6.9",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-modal": "^1.6.5",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}