mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
59 lines
2.5 KiB
JSON
59 lines
2.5 KiB
JSON
{
|
|
"name": "@standardnotes/app-monorepo",
|
|
"private": true,
|
|
"author": "Standard Notes",
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"packages/components/src/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=12.19.0 <17.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "yarn workspaces foreach -pt --parallel --jobs 10 --verbose run lint",
|
|
"test": "yarn workspaces foreach -pt --parallel --jobs 10 --verbose run test",
|
|
"clean": "lerna run clean",
|
|
"build:all": "yarn workspaces foreach -pt --verbose run build",
|
|
"build:web": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web run build",
|
|
"build:desktop": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/desktop run build",
|
|
"build:mobile": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/mobile run build",
|
|
"build:web-server": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web-server run build",
|
|
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
|
|
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
|
|
"prepare": "husky install",
|
|
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install",
|
|
"release:prod": "lerna version --conventional-commits --yes -m \"chore(release): publish\"",
|
|
"release:beta": "lerna version --conventional-prerelease --conventional-commits --yes -m \"chore(release): publish\"",
|
|
"version": "yarn install --no-immutable && git add yarn.lock",
|
|
"postversion": "./scripts/push-tags-one-by-one.sh",
|
|
"lerna:list": " yarn lerna list -all"
|
|
},
|
|
"resolutions": {
|
|
"@types/styled-components/@types/react": "17.0.2",
|
|
"@types/styled-components-react-native/@types/react": "17.0.2",
|
|
"@types/react-native-vector-icons/@types/react": "17.0.2",
|
|
"@types/react-native/@types/react": "17.0.2",
|
|
"@types/hoist-non-react-statics/@types/react": "17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.0.2",
|
|
"@commitlint/config-conventional": "^17.0.2",
|
|
"@lerna-lite/cli": "^1.5.1",
|
|
"@lerna-lite/list": "^1.5.1",
|
|
"@lerna-lite/run": "^1.5.1",
|
|
"@standardnotes/config": "^2.4.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"eslint": "^8.17.0",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^13.0.1",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.7.3",
|
|
"webpack": "^5.72.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"packageManager": "yarn@3.2.1"
|
|
}
|