-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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-saga-persistence",
"version": "0.1.0",
"description": "Persistence implementation using Redux Sagas",
"scripts": {
"build": "NODE_ENV=production webpack",
"lint": "eslint src/",
"start": "webpack-dev-server --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/jportela/redux-saga-persistence"
},
"license": "MIT",
"homepage": "http://engineering.invisionapp.com/",
"dependencies": {
"babel-polyfill": "^6.23.0",
"lodash": "^4.17.19",
"prop-types": "^15.5.8",
"react": "^16.0.0",
"react-addons-update": "^15.5.2",
"react-bootstrap": "^0.31.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-register": "^6.24.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"style-loader": "^0.17.0",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
}
}