-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.64 KB
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
{
"name": "rn-quick-preview-workspace",
"private": true,
"version": "2.0.2",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm --workspace packages/react-native-quick-preview run build",
"example": "npm --workspace apps/expo-quick-preview-example run start",
"example-clean": "npm run build && npm --workspace apps/expo-quick-preview-example run start -- -c",
"example:ios": "npm --workspace apps/expo-quick-preview-example run ios",
"example:android": "npm --workspace apps/expo-quick-preview-example run android",
"dev": "npm --workspace packages/react-native-quick-preview run dev",
"type-check": "npm --workspace packages/react-native-quick-preview run type-check",
"lint": "npm --workspace packages/react-native-quick-preview run lint",
"clean": "npm --workspace packages/react-native-quick-preview run clean",
"doctor:reanimated-plugin": "node -e \"const fs=require('fs');const path=require('path');function scan(dir){for(const f of fs.readdirSync(dir)){if(f==='node_modules')continue;const p=path.join(dir,f);const s=fs.statSync(p);if(s.isDirectory())scan(p);else if(/babel\\.(config|js|cjs|mjs)$/.test(f)){const t=fs.readFileSync(p,'utf8');if(t.includes('react-native-reanimated/plugin'))console.log(p)}}}scan(process.cwd())\"",
"test": "npm --workspace packages/react-native-quick-preview run test"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10",
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-test-renderer": "19.1.0",
"semver": "^7.7.2"
}
}