mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
Sorry about the thrash in advance! This removes the top level `forget` directory which adds unnecessary nesting to our repo Hopefully everything still works
27 lines
866 B
JSON
27 lines
866 B
JSON
{
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": ["packages/*", "apps/*"],
|
|
"nohoist": ["**/next", "**/next/**"]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react-forget.git"
|
|
},
|
|
"scripts": {
|
|
"bundle:meta": "scripts/bundle-meta.sh",
|
|
"hash": "scripts/hash.sh",
|
|
"start": "yarn workspace playground run start",
|
|
"next": "yarn workspace playground run dev",
|
|
"build": "yarn workspaces run build",
|
|
"dev": "concurrently --kill-others -n forget,playground \"yarn workspace babel-plugin-react-forget run tsc --watch\" \"yarn workspace playground run dev\"",
|
|
"test": "yarn workspaces run test",
|
|
"snap": "yarn workspace babel-plugin-react-forget run snap",
|
|
"snap:build": "yarn workspace snap run build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"concurrently": "^7.4.0"
|
|
}
|
|
}
|