-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 KB
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": "@simplux/recipes.advanced.debugging-with-redux-devtools",
"version": "0.18.0",
"description": "This recipe shows you how simple it is to debug your state changes with simplux by leveraging the Redux DevTools",
"main": "src/index.ts",
"scripts": {
"start": "webpack-dev-server --mode development --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrWolfZ/simplux.git"
},
"bugs": {
"url": "https://github.com/MrWolfZ/simplux/issues"
},
"homepage": "https://github.com/MrWolfZ/simplux/tree/master/recipes/advanced/debugging-with-redux-devtools#readme",
"keywords": [
"recipe",
"redux",
"devtools",
"simplux",
"typescript"
],
"author": "Jonathan Ziller <jonathan.ziller@gmail.com> (https://www.github.com/MrWolfZ)",
"license": "MIT",
"private": true,
"dependencies": {
"@simplux/core": "0.18.0",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9"
},
"devDependencies": {
"html-webpack-plugin": "^4.0.0",
"ts-loader": "^6.0.2",
"typescript": "~4.2.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1"
}
}