-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "di-with-redux",
"version": "1.0.0",
"description": "This repository shows an easy way to deal with dependency inversion (and dependency injection for that matter) in redux using only simple redux thunks. I will use this repository as an example for a blog post.",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"start:mock": "MOCK_API=true webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davelosert/di-with-redux.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davelosert/di-with-redux/issues"
},
"privtae": true,
"homepage": "https://github.com/davelosert/di-with-redux#readme",
"dependencies": {
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/react-redux": "^5.0.8",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"html-webpack-plugin": "^2.30.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"ts-loader": "^2.3.7",
"typescript": "^2.5.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}