-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 854 Bytes
/
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
{
"name": "multi-react-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run dev:container & npm run dev:react16 & npm run dev:react17 & npm run dev:react18",
"dev:container": "npm run dev --workspace=container",
"dev:react16": "npm run dev --workspace=react16",
"dev:react17": "npm run dev --workspace=react17",
"dev:react18": "npm run dev --workspace=react18",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"workspaces": [
"packages/container",
"packages/react16",
"packages/react17",
"packages/react18"
],
"devDependencies": {
"@rsbuild/core": "^0.5.7",
"@rsbuild/plugin-react": "^0.5.7",
"typescript": "^5.3.3"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}