2019-07-29 12:55:39 +02:00
|
|
|
{
|
2020-11-05 18:58:23 +02:00
|
|
|
"name": "root",
|
|
|
|
"private": true,
|
2021-12-20 17:08:43 +02:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2020-11-05 18:58:23 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/laurent22/joplin.git"
|
|
|
|
},
|
2021-12-20 17:08:43 +02:00
|
|
|
"engines": {
|
|
|
|
"node": ">=16"
|
|
|
|
},
|
2019-07-29 14:10:07 +02:00
|
|
|
"scripts": {
|
2021-12-20 17:08:43 +02:00
|
|
|
"buildApiDoc": "yarn workspace joplin start apidoc ../../readme/api/references/rest_api.md",
|
2023-04-06 11:29:59 +02:00
|
|
|
"buildCommandIndex": "node packages/tools/gulp/tasks/buildCommandIndexRun.js",
|
2023-10-31 13:29:09 +02:00
|
|
|
"buildParallel": "yarn workspaces foreach --verbose --interlaced --parallel --jobs 2 --topological run build && yarn run tsc",
|
2023-06-23 19:18:25 +02:00
|
|
|
"buildPluginDoc": "cd packages/generate-plugin-doc && yarn run buildPluginDoc_",
|
2023-10-31 13:29:09 +02:00
|
|
|
"buildSequential": "yarn workspaces foreach --verbose --interlaced --topological run build && yarn run tsc",
|
|
|
|
"buildServerDocker": "node packages/tools/buildServerDocker.js",
|
2021-12-21 20:53:36 +02:00
|
|
|
"buildSettingJsonSchema": "yarn workspace joplin start settingschema ../../../joplin-website/docs/schema/settings.json",
|
2021-12-21 19:10:59 +02:00
|
|
|
"buildTranslations": "node packages/tools/build-translation.js",
|
2023-10-30 13:32:14 +02:00
|
|
|
"buildWebsite": "node ./packages/tools/website/processDocs.js --env prod && node ./packages/tools/website/build.js && yarn run buildPluginDoc && yarn run buildSettingJsonSchema",
|
2023-10-31 13:29:09 +02:00
|
|
|
"buildWebsiteTranslations": "node packages/tools/website/buildTranslations.js",
|
2023-08-22 12:46:35 +02:00
|
|
|
"checkIgnoredFiles": "node ./packages/tools/checkIgnoredFiles.js",
|
2023-10-31 13:29:09 +02:00
|
|
|
"checkLibPaths": "node ./packages/tools/checkLibPaths.js",
|
2021-01-27 19:42:58 +02:00
|
|
|
"circularDependencyCheck": "madge --warning --circular --extensions js ./",
|
2021-12-20 17:08:43 +02:00
|
|
|
"clean": "npm run clean --workspaces --if-present && node packages/tools/clean && yarn cache clean",
|
2023-10-31 13:29:09 +02:00
|
|
|
"crowdin": "crowdin",
|
|
|
|
"crowdinDownload": "crowdin download",
|
|
|
|
"crowdinUpload": "crowdin upload",
|
|
|
|
"cspell": "cspell",
|
2021-02-01 13:52:45 +02:00
|
|
|
"dependencyTree": "madge",
|
2020-11-09 15:12:11 +02:00
|
|
|
"generateDatabaseTypes": "node packages/tools/generate-database-types",
|
2020-10-09 22:26:50 +02:00
|
|
|
"linkChecker": "linkchecker https://joplinapp.org",
|
2021-11-22 19:17:28 +02:00
|
|
|
"linter-ci": "eslint --resolve-plugins-relative-to . --quiet --ext .js --ext .jsx --ext .ts --ext .tsx",
|
2023-10-31 13:29:09 +02:00
|
|
|
"linter-interactive": "eslint-interactive --resolve-plugins-relative-to . --fix --quiet --ext .js --ext .jsx --ext .ts --ext .tsx",
|
2021-11-22 19:17:28 +02:00
|
|
|
"linter-precommit": "eslint --resolve-plugins-relative-to . --fix --ext .js --ext .jsx --ext .ts --ext .tsx",
|
|
|
|
"linter": "eslint --resolve-plugins-relative-to . --fix --quiet --ext .js --ext .jsx --ext .ts --ext .tsx",
|
2023-08-22 12:46:35 +02:00
|
|
|
"packageJsonLint": "node ./packages/tools/packageJsonLint.js",
|
2022-01-01 16:06:57 +02:00
|
|
|
"postinstall": "gulp build",
|
2023-10-31 13:29:09 +02:00
|
|
|
"postPreReleasesToForum": "node ./packages/tools/postPreReleasesToForum",
|
2022-01-01 16:06:57 +02:00
|
|
|
"publishAll": "git pull && yarn run buildParallel && lerna version --yes --no-private --no-git-tag-version && gulp completePublishAll",
|
2022-02-11 20:24:59 +02:00
|
|
|
"releaseAndroid": "PATH=\"/usr/local/opt/openjdk@11/bin:$PATH\" node packages/tools/release-android.js",
|
2021-02-01 13:52:45 +02:00
|
|
|
"releaseAndroidClean": "node packages/tools/release-android.js",
|
2020-11-06 23:25:07 +02:00
|
|
|
"releaseCli": "node packages/tools/release-cli.js",
|
2020-11-06 23:41:12 +02:00
|
|
|
"releaseClipper": "node packages/tools/release-clipper.js",
|
|
|
|
"releaseDesktop": "node packages/tools/release-electron.js",
|
2021-02-01 13:52:45 +02:00
|
|
|
"releaseIOS": "node packages/tools/release-ios.js",
|
2020-11-18 12:36:19 +02:00
|
|
|
"releasePluginGenerator": "node packages/tools/release-plugin-generator.js",
|
2021-12-21 13:38:05 +02:00
|
|
|
"releasePluginRepoCli": "node packages/tools/release-plugin-repo-cli.js",
|
2021-01-04 17:03:17 +02:00
|
|
|
"releaseServer": "node packages/tools/release-server.js",
|
2023-10-31 13:29:09 +02:00
|
|
|
"setupNewRelease": "node ./packages/tools/setupNewRelease",
|
2022-05-05 17:34:52 +02:00
|
|
|
"spellcheck": "node packages/tools/spellcheck.js",
|
2021-09-23 18:13:54 +02:00
|
|
|
"tagServerLatest": "node packages/tools/tagServerLatest.js",
|
2021-12-21 12:00:32 +02:00
|
|
|
"test-ci": "yarn workspaces foreach --parallel --verbose --interlaced --jobs 2 run test-ci",
|
|
|
|
"test": "yarn workspaces foreach --parallel --verbose --interlaced --jobs 2 run test",
|
2021-12-20 17:08:43 +02:00
|
|
|
"tsc": "yarn workspaces foreach --parallel --verbose --interlaced run tsc",
|
2023-04-06 11:29:59 +02:00
|
|
|
"updateIgnored": "node packages/tools/gulp/tasks/updateIgnoredTypeScriptBuildRun.js",
|
2023-10-31 13:29:09 +02:00
|
|
|
"updateMarkdownDoc": "node ./packages/tools/updateMarkdownDoc",
|
|
|
|
"updateNews": "node ./packages/tools/website/updateNews",
|
2020-11-19 20:34:53 +02:00
|
|
|
"updatePluginTypes": "./packages/generator-joplin/updateTypes.sh",
|
2021-12-21 13:38:05 +02:00
|
|
|
"watch": "yarn workspaces foreach --parallel --verbose --interlaced --jobs 999 run watch",
|
2023-10-30 13:32:14 +02:00
|
|
|
"watchWebsite": "nodemon --delay 1 --watch Assets/WebsiteAssets --watch packages/tools/website --watch packages/tools/website/utils --watch packages/doc-builder/build --ext md,ts,js,mustache,css,tsx,gif,png,svg --exec \"node packages/tools/website/build.js && http-server --port 8077 ../joplin-website/docs -a localhost\""
|
2019-07-29 14:10:07 +02:00
|
|
|
},
|
2019-07-30 09:35:42 +02:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2023-08-22 12:46:35 +02:00
|
|
|
"pre-commit": "lint-staged"
|
2019-07-30 09:35:42 +02:00
|
|
|
}
|
|
|
|
},
|
2019-07-29 12:55:39 +02:00
|
|
|
"devDependencies": {
|
2023-10-31 13:29:09 +02:00
|
|
|
"@crowdin/cli": "3",
|
2023-08-04 11:57:54 +02:00
|
|
|
"@joplin/utils": "~2.12",
|
2022-11-17 15:32:38 +02:00
|
|
|
"@seiyab/eslint-plugin-react-hooks": "4.5.1-beta.0",
|
2023-11-01 12:48:09 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.7.2",
|
|
|
|
"@typescript-eslint/parser": "6.7.2",
|
2022-11-07 12:01:46 +02:00
|
|
|
"cspell": "5.21.2",
|
2023-11-01 12:48:09 +02:00
|
|
|
"eslint": "8.49.0",
|
2023-08-01 16:38:59 +02:00
|
|
|
"eslint-interactive": "10.8.0",
|
2023-09-12 17:23:59 +02:00
|
|
|
"eslint-plugin-import": "2.28.1",
|
2023-11-01 12:48:09 +02:00
|
|
|
"eslint-plugin-jest": "27.4.0",
|
2022-11-08 16:24:11 +02:00
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-09-13 16:59:02 +02:00
|
|
|
"eslint-plugin-react": "7.33.2",
|
2023-04-06 12:11:45 +02:00
|
|
|
"execa": "5.1.1",
|
2023-03-30 22:11:29 +02:00
|
|
|
"fs-extra": "11.1.1",
|
2023-10-15 19:51:37 +02:00
|
|
|
"glob": "10.3.10",
|
2022-11-05 16:47:55 +02:00
|
|
|
"gulp": "4.0.2",
|
|
|
|
"husky": "3.1.0",
|
|
|
|
"lerna": "3.22.1",
|
2023-11-02 16:36:56 +02:00
|
|
|
"lint-staged": "14.0.1",
|
2023-07-14 11:06:55 +02:00
|
|
|
"madge": "6.1.0",
|
2023-09-22 11:45:51 +02:00
|
|
|
"npm-package-json-lint": "7.0.0",
|
2023-11-01 12:48:09 +02:00
|
|
|
"typescript": "5.2.2"
|
2021-07-10 12:16:13 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-10-05 01:28:29 +02:00
|
|
|
"@types/fs-extra": "11.0.2",
|
2023-11-01 12:48:09 +02:00
|
|
|
"eslint-plugin-github": "4.10.0",
|
2022-11-12 14:20:32 +02:00
|
|
|
"http-server": "14.1.1",
|
2023-07-23 12:28:02 +02:00
|
|
|
"node-gyp": "9.4.0",
|
2023-09-27 06:14:38 +02:00
|
|
|
"nodemon": "3.0.1"
|
2021-12-20 17:08:43 +02:00
|
|
|
},
|
2023-11-01 12:48:09 +02:00
|
|
|
"packageManager": "yarn@3.6.4",
|
2023-02-19 15:08:53 +02:00
|
|
|
"resolutions": {
|
2023-04-17 14:17:15 +02:00
|
|
|
"react-native-camera@4.2.1": "patch:react-native-camera@npm%3A4.2.1#./.yarn/patches/react-native-camera-npm-4.2.1-24b2600a7e.patch",
|
2023-06-30 17:23:05 +02:00
|
|
|
"react-native-vosk@0.1.12": "patch:react-native-vosk@npm%3A0.1.12#./.yarn/patches/react-native-vosk-npm-0.1.12-76b1caaae8.patch",
|
2023-11-01 12:48:09 +02:00
|
|
|
"eslint": "patch:eslint@8.49.0#./.yarn/patches/eslint-npm-8.39.0-d92bace04d.patch",
|
2023-07-23 17:01:32 +02:00
|
|
|
"app-builder-lib@24.4.0": "patch:app-builder-lib@npm%3A24.4.0#./.yarn/patches/app-builder-lib-npm-24.4.0-05322ff057.patch",
|
2023-09-11 09:53:53 +02:00
|
|
|
"react-native@0.71.10": "patch:react-native@npm%3A0.71.10#./.yarn/patches/react-native-animation-fix/react-native-npm-0.71.10-f9c32562d8.patch"
|
2023-02-19 15:08:53 +02:00
|
|
|
}
|
2019-07-29 12:55:39 +02:00
|
|
|
}
|