web/package.json

77 lines
3.3 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-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 -t --verbose run lint",
"test": "yarn workspaces foreach -pt --jobs 10 --verbose run test",
2022-06-07 15:18:41 +03:00
"clean": "lerna run clean",
2022-11-04 05:04:16 +03:00
"build:all": "yarn workspaces foreach -pt --topological-dev --verbose --exclude '{@standardnotes/docs}' run build",
"build:web": "yarn workspaces foreach -pt --topological-dev --verbose -R --from @standardnotes/web run build",
"build:desktop": "yarn workspaces foreach -pt --topological-dev --verbose -R --from @standardnotes/desktop run build",
"build:mobile": "yarn workspaces foreach -pt --topological-dev --verbose -R --from @standardnotes/mobile run build",
"build:snjs": "yarn workspaces foreach -p --topological-dev --verbose -R --from @standardnotes/snjs run build",
"build:services": "yarn workspaces foreach -pt --topological-dev --verbose -R --from @standardnotes/services run build",
"build:api": "yarn workspaces foreach -pt --topological-dev --verbose -R --from @standardnotes/api run build",
"start:server:web": "lerna run start --scope=@standardnotes/web",
"e2e": "lerna run start:test-server --scope=@standardnotes/snjs",
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\"",
"publish:prod": "lerna publish from-git --yes --no-verify-access --loglevel verbose",
"version": "yarn install --no-immutable && git add yarn.lock && yarn changelog:json",
"changelog:json": "node scripts/ChangelogToJson.js && git add .",
"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": {
2022-07-06 15:50:56 +03:00
"@standardnotes/snjs": "workspace:*"
},
2016-12-06 02:33:27 +03:00
"devDependencies": {
2022-11-16 18:52:21 +03:00
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
2022-10-24 16:34:10 +03:00
"@lerna-lite/cli": "^1.12.0",
"@lerna-lite/list": "^1.12.0",
"@lerna-lite/run": "^1.12.0",
2022-06-25 19:17:45 +03:00
"@standardnotes/config": "^2.4.3",
2022-11-16 18:52:21 +03:00
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"changelog-parser": "^2.8.1",
2022-11-16 18:52:21 +03:00
"css-loader": "^6.7.2",
"eslint": "^8.27.0",
"eslint-plugin-prettier": "^4.2.1",
2022-10-24 16:34:10 +03:00
"lint-staged": "^13.0.3",
2022-11-16 18:52:21 +03:00
"npm-check-updates": "^16.4.1",
2022-10-24 16:34:10 +03:00
"prettier": "^2.7.1",
2022-11-16 18:52:21 +03:00
"sass-loader": "^13.2.0",
"typescript": "4.9.3",
"webpack": "^5.75.0",
2022-10-24 16:34:10 +03:00
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
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
}