1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/package.json

59 lines
2.7 KiB
JSON
Raw Normal View History

2019-07-29 12:55:39 +02:00
{
2020-11-05 18:58:23 +02:00
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/laurent22/joplin.git"
},
"license": "MIT",
2019-07-29 14:10:07 +02:00
"scripts": {
2020-11-05 18:58:23 +02:00
"buildApiDoc": "npm start --prefix=packages/app-cli -- apidoc ../../readme/api/references/rest_api.md",
2020-11-06 23:52:24 +02:00
"buildDoc": "./packages/tools/build-all.sh",
2020-11-06 23:41:12 +02:00
"buildPluginDoc": "typedoc --name 'Joplin Plugin API Documentation' --mode file -theme './Assets/PluginDocTheme/' --readme './Assets/PluginDocTheme/index.md' --excludeNotExported --excludeExternals --excludePrivate --excludeProtected --out docs/api/references/plugin_api packages/lib/services/plugins/api/",
"buildTranslations": "npm run tsc && node packages/tools/build-translation.js",
2020-11-05 18:58:23 +02:00
"buildWebsite": "npm run buildApiDoc && node ./packages/tools/build-website.js && npm run buildPluginDoc",
"clean": "lerna clean -y && lerna run clean",
"generateDatabaseTypes": "node packages/tools/generate-database-types",
"linkChecker": "linkchecker https://joplinapp.org",
2020-11-06 23:41:12 +02:00
"linter-ci": "./node_modules/.bin/eslint --resolve-plugins-relative-to . --quiet --ext .js --ext .jsx --ext .ts --ext .tsx",
"linter-precommit": "./node_modules/.bin/eslint --resolve-plugins-relative-to . --fix --ext .js --ext .jsx --ext .ts --ext .tsx",
"linter": "./node_modules/.bin/eslint --resolve-plugins-relative-to . --fix --quiet --ext .js --ext .jsx --ext .ts --ext .tsx",
"postinstall": "lerna bootstrap --no-ci && npm run tsc",
"publishAll": "git pull && lerna version --no-git-tag-version && gulp completePublishAll",
2020-11-06 20:45:45 +02:00
"releaseAndroid": "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",
"setupNewRelease": "node ./packages/tools/setupNewRelease",
"updatePluginTypes": "./packages/generator-joplin/updateTypes.sh",
2020-11-06 23:41:12 +02:00
"tsc": "lerna run tsc --stream --parallel",
"test": "lerna run test --stream",
"test-ci": "lerna run test-ci --stream",
2020-11-06 23:41:12 +02:00
"updateIgnored": "gulp updateIgnoredTypeScriptBuild",
"watch": "lerna run watch --stream --parallel"
2019-07-29 14:10:07 +02:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
2019-07-29 12:55:39 +02:00
"devDependencies": {
2020-11-05 18:58:23 +02:00
"@types/jasmine": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.20.2",
2020-01-29 19:54:25 +02:00
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.4.0",
2020-02-17 22:55:09 +02:00
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"husky": "^3.0.2",
"jasmine": "^3.5.0",
2020-11-05 18:58:23 +02:00
"lerna": "^3.22.1",
"lint-staged": "^9.2.1",
"typedoc": "^0.17.8",
2020-11-05 18:58:23 +02:00
"typescript": "^4.0.5"
}
2019-07-29 12:55:39 +02:00
}