-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.02 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.02 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
{
"name": "react-iframe-navigation",
"version": "1.0.0",
"description": "A React app showing how to run another react app inside an iframe - and keeping the navigation (back & forward buttons) in sync.",
"main": "index.js",
"scripts": {
"install": "cd inner-react-app && npm install --include=dev && cd ../outer-react-app && npm install --include=dev",
"build": "cd inner-react-app && npm run build && cd ../outer-react-app && npm run build",
"inner": "npm run dev --prefix ./inner-react-app",
"outer": "npm run dev --prefix ./outer-react-app",
"start": "concurrently --kill-others-on-fail \"npm run inner\" \"npm run outer\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattburrell/react-iframe-navigation.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattburrell/react-iframe-navigation/issues"
},
"homepage": "https://github.com/mattburrell/react-iframe-navigation#readme",
"dependencies": {
"concurrently": "^7.5.0"
}
}