-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "flux-observable",
"version": "1.0.0",
"description": "rxjs observable patterns for React flux",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anigenero/react-reducer-observable.git"
},
"keywords": [
"react",
"reduce",
"rxjs"
],
"author": {
"name": "Robin Schultz",
"email": "robin@anigenero.com",
"url": "https://github.com/anigenero"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anigenero/react-reducer-observable/issues"
},
"homepage": "https://github.com/anigenero/react-reducer-observable#readme",
"peerDependencies": {
"react": "^17.0.0"
},
"devDependencies": {
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-jest": "^27.2.4",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.22.0",
"jest": "^27.2.4",
"jest-cli": "^27.2.4",
"jest-environment-jsdom": "^27.2.4",
"react": "*",
"react-dom": "^17.0.1",
"snapshot-diff": "^0.9.0",
"ts-jest": "^27.0.5",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"rxjs": "^7.4.0"
}
}