Files
technikoin/package.json
2022-11-01 17:04:55 +01:00

27 lines
618 B
JSON

{
"name": "@my-app/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"react-app:build": "yarn workspace @my-app/react-app build",
"react-app:eject": "yarn workspace @my-app/react-app eject",
"react-app:ipfs": "yarn workspace @my-app/react-app ipfs",
"react-app:start": "yarn workspace @my-app/react-app start",
"react-app:test": "yarn workspace @my-app/react-app test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"react-error-overlay": "6.0.9"
}
}