-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "redux-devtools-expo-dev-plugin",
"version": "1.0.0",
"description": "The full Redux DevTools for Expo as a dev plugin",
"homepage": "https://github.com/matt-oakes/redux-devtools-expo-dev-plugin",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"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": " patch-package && 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": [
"expo",
"devtools",
"redux"
],
"files": [
"build",
"dist",
"expo-module.config.json"
],
"dependencies": {
"@redux-devtools/instrument": "^2.2.0",
"@redux-devtools/utils": "^3.0.0",
"jsan": "^3.1.14"
},
"devDependencies": {
"@types/jsan": "^3.1.5",
"expo": "~52.0.3",
"expo-module-scripts": "^4.0.2",
"patch-package": "^8.0.0",
"redux": "^5.0.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"expo": ">=52",
"redux": "*"
}
}