-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
51 lines (51 loc) · 1.3 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
48
49
50
51
{
"name": "redux-orm-primer",
"version": "0.1.0",
"description": "A guide to creating a Todo application with Redux-ORM",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --hot",
"build": "webpack"
},
"keywords": [
"redux",
"orm",
"redux-orm"
],
"author": "Tommi Kaikkonen",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"bluebird": "^3.1.2",
"chai": "^3.4.1",
"clean-webpack-plugin": "^0.1.5",
"factory-girl": "^2.2.2",
"gulp": "^3.9.0",
"gulp-gh-pages": "^0.5.4",
"html-webpack-plugin": "^2.21.0",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"react-pure-render": "^1.0.2",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-diff-logger": "0.0.6",
"redux-logger": "^2.4.0",
"redux-orm": "^0.8.1",
"redux-orm-proptypes": "^0.1.0",
"reselect": "^2.0.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}