-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "redux-saga-devtools-expo-dev-plugin",
"version": "1.0.0",
"description": "A React Native Redux Saga DevTool Plugin for Expo apps",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/SimformSolutionsPvtLtd/redux-saga-devtools-expo-dev-plugin"
},
"homepage": "https://github.com/SimformSolutionsPvtLtd/redux-saga-devtools-expo-dev-plugin#readme",
"scripts": {
"build": "expo-module build",
"test:types": "expo-module tsc --noEmit",
"test:lint": "expo-module lint",
"test": "npm run test:types && npm run test:lint",
"clean": "expo-module clean",
"prepare": "expo-module prepare && npm run web:install",
"prepublishOnly": "expo-module prepublishOnly && npm run web:export",
"web:install": "cd webui && npm install",
"web:dev": "cd webui && npm start",
"web:export": "cd webui && npm run export"
},
"keywords": [
"react",
"react-native",
"expo",
"devtools",
"redux",
"saga",
"redux-saga",
"plugin",
"typescript",
"rn"
],
"files": [
"build",
"dist",
"expo-module.config.json"
],
"author": "Simform Solutions",
"dependencies": {
"@redux-saga/is": "^1.0.1",
"@redux-saga/core": "^1.3.0"
},
"devDependencies": {
"expo": "~52.0.4",
"expo-module-scripts": "^4.0.2",
"typescript": "^5.6.3",
"redux": "^4.0.1",
"redux-saga": "^1.0.1"
},
"peerDependencies": {
"expo": ">=52",
"redux": "*",
"redux-saga": "*"
}
}