mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
51 lines
1.8 KiB
JSON
51 lines
1.8 KiB
JSON
{
|
|
"name": "@standardnotes/app-monorepo",
|
|
"private": true,
|
|
"author": "Standard Notes",
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=12.19.0 <17.0.0"
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap",
|
|
"lint": "lerna run lint --parallel",
|
|
"test": "lerna run test --parallel",
|
|
"clean": "lerna run clean",
|
|
"build": "lerna run build",
|
|
"build:web": "lerna run build --scope=@standardnotes/web",
|
|
"build:toast": "lerna run build --scope=@standardnotes/toast",
|
|
"build:styles": "lerna run build --scope=@standardnotes/styles",
|
|
"build:web:all": "yarn build:toast && yarn build:styles && yarn build:web",
|
|
"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",
|
|
"version-bump": "lerna version --conventional-commits --yes -m \"chore(release): publish\"",
|
|
"publish-packages": "lerna publish from-git --yes",
|
|
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock"
|
|
},
|
|
"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": {
|
|
"@standardnotes/config": "^2.4.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"eslint": "^8.17.0",
|
|
"husky": "^7.0.4",
|
|
"lerna": "^3.22.1",
|
|
"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"
|
|
}
|