-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "redux-astronomy",
"version": "1.0.0",
"description": "Simple modular Redux state management",
"main": "./lib/index.js",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"prepublishOnly": "npm run tsc",
"lint": "npx eslint src/**/*.ts --fix-dry-run",
"test": "react-scripts test"
},
"author": "Greg Denys",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@types/react-redux": "^7.1.5",
"react-redux": "^7.1.1",
"redux": "^4.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.10.2",
"typescript": "^4.1.3"
},
"keywords": [
"react",
"redux",
"state",
"hooks",
"DRY",
"boilerplate",
"module",
"migration"
]
}