-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
112 lines (112 loc) · 3.62 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-native-offline",
"version": "6.0.2",
"description": "Handy toolbelt to deal with offline mode in React Native applications. Cross-platform, provides a smooth redux integration.",
"author": "Raul Gomez Acuna <[email protected]> (https://github.com/rgommezz)",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/react-native-offline.js",
"module": "dist/react-native-offline.esm.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "eslint --ext .js,.ts,.tsx {src,test}/**/*.{ts,tsx}",
"test": "jest test",
"ts": "./node_modules/.bin/tsc --noEmit",
"format": "npm run lint -- --fix",
"prettier": "prettier --write \"{src,test,example}/**/*.{ts,tsx}\"",
"test:coverage": "node --harmony node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "npm run lint",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgommezz/react-native-offline.git"
},
"keywords": [
"react-native",
"react",
"offline",
"offline-first",
"redux"
],
"files": [
"src",
"dist"
],
"bugs": {
"url": "https://github.com/rgommezz/react-native-offline/issues"
},
"homepage": "https://github.com/rgommezz/react-native-offline#readme",
"devDependencies": {
"@react-native-community/netinfo": "^6.0.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.21",
"@types/react-redux": "^7.1.2",
"@types/react-test-renderer": "^16.9.0",
"@types/redux-mock-store": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"all-contributors-cli": "^5.4.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-react-native": "^4.0.1",
"coveralls": "^3.0.6",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"jest": "^24.9.0",
"jest-enzyme": "^7.0.1",
"jsdom": "^13.1.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-native": "^0.62.2",
"react-native-testing-library": "^1.5.0",
"react-native-typescript-transformer": "^1.2.13",
"react-redux": "^7.0.0",
"react-test-renderer": "^16.6.3",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-saga-test-plan": "4.0.0-beta.2",
"redux-thunk": "^2.3.0",
"redux-saga": "^1.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.29.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.1.0",
"typescript": "3.7.5"
},
"dependencies": {
"lodash": "^4.17.11",
"react-redux": ">=7",
"redux": ">=3",
"redux-saga": "^1.0.2"
},
"peerDependencies": {
"@react-native-community/netinfo": ">=6",
"react-native": ">=0.60",
"react-redux": ">=7",
"redux": ">=3",
"redux-saga": ">=1.x"
}
}