-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "reduxology",
"version": "3.0.2",
"description": "A library that makes it easier to manage boilerplate and reason about React Redux applications",
"main": "dist/index.js",
"types": "./declarations/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "eslint src/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nebrius/reduxology.git"
},
"keywords": [
"react",
"redux",
"boilerplate"
],
"author": "Bryan Hughes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/reduxology/issues"
},
"homepage": "https://github.com/nebrius/reduxology#readme",
"devDependencies": {
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.13",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"dependencies": {
"immer": "^9.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0"
}
}