web/package.json

77 lines
3.4 KiB
JSON
Raw Normal View History

2016-12-06 02:33:27 +03:00
{
2022-06-07 15:18:41 +03:00
"name": "@standardnotes/app-monorepo",
2022-06-16 22:22:51 +03:00
"version": "0.0.1",
2022-06-07 15:18:41 +03:00
"private": true,
2022-06-16 22:06:57 +03:00
"author": "Standard Notes.",
"repository": {
"type": "git",
"url": "git://github.com/standardnotes/app"
},
2022-06-09 17:45:15 +03:00
"workspaces": {
"packages": [
"packages/*",
2022-06-28 01:20:19 +03:00
"packages/components/src/Packages/Deprecated/*",
"packages/components/src/Packages/Editors/*",
2022-07-04 22:33:27 +03:00
"packages/components/src/Packages/Themes/*",
"docs"
2022-06-09 17:45:15 +03:00
]
},
2022-06-07 15:18:41 +03:00
"engines": {
"node": ">=12.19.0 <17.0.0"
2017-04-27 07:58:34 +03:00
},
"scripts": {
"lint": "yarn workspaces foreach -pt --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run lint",
"test": "yarn workspaces foreach -pt --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run test",
2022-06-07 15:18:41 +03:00
"clean": "lerna run clean",
2022-07-04 22:33:27 +03:00
"build:all": "yarn workspaces foreach -pt --verbose --exclude '{@standardnotes/components-meta,@standardnotes/docs}' run build",
2022-06-23 16:27:42 +03:00
"build:components": "yarn workspaces foreach -pt --verbose --interlaced -R --from @standardnotes/components-meta run build",
"build:web": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web --exclude @standardnotes/components-meta run build",
"build:desktop": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/desktop --exclude @standardnotes/components-meta run build",
"build:mobile": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/mobile --exclude @standardnotes/components-meta run build",
"build:web-server": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web-server --exclude @standardnotes/components-meta run build",
2022-06-07 19:52:15 +03:00
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
2022-06-07 20:00:54 +03:00
"prepare": "husky install",
2022-06-14 19:41:12 +03:00
"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\"",
2022-07-01 18:39:47 +03:00
"publish:prod": "lerna publish from-git --yes --no-verify-access",
"version": "yarn install --no-immutable && git add yarn.lock",
"postversion": "./scripts/push-tags-one-by-one.sh",
2022-06-28 15:13:56 +03:00
"workspace:list": " yarn lerna list -all",
2022-06-24 15:52:07 +03:00
"upgrade:snjs": "ncu -u '@standardnotes/*' && yarn workspaces foreach --verbose run upgrade:snjs"
2022-06-09 17:45:15 +03:00
},
"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"
},
"dependencies": {
"@standardnotes/snjs": "^2.118.3"
},
2016-12-06 02:33:27 +03:00
"devDependencies": {
2022-06-13 19:08:06 +03:00
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
2022-06-14 18:34:33 +03:00
"@lerna-lite/cli": "^1.5.1",
"@lerna-lite/list": "^1.5.1",
"@lerna-lite/run": "^1.5.1",
2022-06-25 19:17:45 +03:00
"@standardnotes/config": "^2.4.3",
2022-06-09 17:45:15 +03:00
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"changelog-parser": "^2.8.1",
"css-loader": "^6.7.1",
2022-06-09 17:45:15 +03:00
"eslint": "^8.17.0",
2022-06-13 20:12:56 +03:00
"husky": "^8.0.0",
2022-06-09 17:45:15 +03:00
"lint-staged": "^13.0.1",
2022-06-24 16:04:03 +03:00
"npm-check-updates": "^14.1.1",
2022-06-09 17:45:15 +03:00
"prettier": "^2.6.2",
"sass-loader": "^13.0.0",
2022-06-09 17:45:15 +03:00
"typescript": "^4.7.3",
"webpack": "^5.72.0",
2022-06-18 17:20:44 +03:00
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
2020-06-09 17:03:46 +03:00
},
2022-06-13 20:23:58 +03:00
"packageManager": "yarn@3.2.1"
2016-12-06 02:33:27 +03:00
}