-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 925 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "reactnative-run",
"version": "1.0.0",
"private": true,
"workspaces": [
"browser-metro",
"reactnative-esm",
"website"
],
"scripts": {
"dev": "concurrently \"npm run dev --prefix reactnative-esm\" \"npm run dev --prefix browser-metro\" \"npm run dev --prefix browser-metro/example\" \"npm run dev --prefix website\"",
"dev:bundler": "concurrently \"npm run dev --prefix reactnative-esm\" \"npm run dev --prefix browser-metro\" \"npm run dev --prefix browser-metro/example\"",
"dev:website": "npm run dev --prefix website",
"build": "bash scripts/build-playground.sh && npm run build --prefix website",
"build:playground": "bash scripts/build-playground.sh",
"build:metro": "npm run build --prefix browser-metro",
"build:website": "npm run build --prefix website",
"docs": "npx serve docs -l 3002"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}