This repository was archived by the owner on Oct 4, 2022. It is now read-only.
forked from curiosity26/redux-saga-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@onegini/redux-saga-router",
"version": "3.0.0",
"description": "A router for Redux Saga",
"main": "lib/index.js",
"files": [
"react.js",
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"check": "npm run lint && npm test",
"clean": "rimraf lib",
"lint": "eslint src __tests__",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:onewelcome/redux-saga-router.git"
},
"keywords": [
"redux",
"redux-saga",
"saga",
"router",
"routing",
"history"
],
"authors": [
"Alex Boyce <curiosity26@gmail.com>",
"Jeremy Fairbank <elpapapollo@gmail.com> (http://jeremyfairbank.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/onewelcome/redux-saga-router/issues"
},
"homepage": "https://github.com/onewelcome/redux-saga-router#readme",
"dependencies": {
"fsm-iterator": "^1.1.0",
"history": "^5.3.0",
"ruta3": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@redux-saga/core": "^1.1.3",
"@types/jest": "^28.1.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"express": "^4.18.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-junit": "^14.0.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"redux-saga-test-plan": "^4.0.1",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@redux-saga/core": ">=1.1.3"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup.js"
],
"testRegex": "(/__tests__/.*\\.(test|spec))\\.jsx?$",
"collectCoverage": true,
"testEnvironment": "jsdom"
},
"publishConfig": {
"access": "public"
}
}