mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 04:00:59 +01:00
110 lines
3.3 KiB
JSON
110 lines
3.3 KiB
JSON
{
|
|
"name": "notesnook",
|
|
"private": true,
|
|
"scripts": {
|
|
"prepare": "bun run scripts/prepare.mjs",
|
|
"bootstrap": "bun run scripts/bootstrap.mjs",
|
|
"clean": "bun run scripts/clean.mjs",
|
|
"build": "tx build --all --exclude=mobile,web,monograph,theme-builder,vericrypt",
|
|
"build:web": "tx web:build",
|
|
"build:vericrypt": "tx vericrypt:build",
|
|
"build:test:web": "tx web:build:test",
|
|
"build:beta:web": "tx web:build:beta",
|
|
"start:web": "tx web:start",
|
|
"start:theme-builder": "tx theme-builder:start",
|
|
"build:theme-builder": "tx theme-builder:build",
|
|
"start:vericrypt": "tx vericrypt:start",
|
|
"start:desktop": "tx desktop:start",
|
|
"test:web": "tx web:test",
|
|
"test:core": "tx core:test",
|
|
"start:android": "tx mobile:run-android",
|
|
"start:ios": "tx mobile:run-ios",
|
|
"prepare:ios": "tx mobile:install-pods",
|
|
"build:ios": "tx mobile:build-ios",
|
|
"build:android": "tx mobile:build-android",
|
|
"build:android:debug": "tx mobile:build-android-debug",
|
|
"release:android": "tx mobile:release-android",
|
|
"release:android:bundle": "tx mobile:release-android-bundle",
|
|
"test:ios": "tx mobile:e2e-ios",
|
|
"test:android": "tx mobile:e2e-android",
|
|
"test:android:debug": "tx mobile:e2e-android-debug",
|
|
"start:metro": "tx mobile:start",
|
|
"start:repack": "tx mobile:repack",
|
|
"start:editor-mobile": "tx editor-mobile:start",
|
|
"start:editor": "tx editor:start",
|
|
"start:server:themes": "tx themes-server:start",
|
|
"build:intl": "tx intl:build",
|
|
"start:intl": "tx intl:start",
|
|
"prettier": "prettier . --write",
|
|
"lint": "eslint ./apps/ ./packages/",
|
|
"linc": "eslint ./apps/ ./packages/ --cache",
|
|
"tx": "bun scripts/execute.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.7.13",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
|
"@typescript-eslint/parser": "^5.59.9",
|
|
"@typescript/native-preview": "^7.0.0-dev.20251006.1",
|
|
"dotenv": "^17.2.3",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-react-app": "^7.0.1",
|
|
"eslint-config-react-hooks": "^1.0.0",
|
|
"eslint-plugin-detox": "^1.0.0",
|
|
"eslint-plugin-jest": "^26.8.7",
|
|
"eslint-plugin-license-header": "^0.6.0",
|
|
"eslint-plugin-react": "^7.31.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-native": "^4.0.0",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"prettier": "^2.8.8",
|
|
"serve": "^14.0.1",
|
|
"tsdown": "^0.15.6",
|
|
"@notesnook/scripts": "file:./scripts"
|
|
},
|
|
"dependencies": {
|
|
"patch-package": "^7.0.0",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"license": "GPL-3.0-or-later",
|
|
"volta": {
|
|
"node": "22.20.0"
|
|
},
|
|
"taskRunner": {
|
|
"projects": [
|
|
"packages/*",
|
|
"apps/*",
|
|
"extensions/*",
|
|
"servers/*",
|
|
"docs/*"
|
|
],
|
|
"tasks": [
|
|
{
|
|
"dependencies": [
|
|
"build"
|
|
],
|
|
"commands": [
|
|
"start",
|
|
"build",
|
|
"release",
|
|
"build:test",
|
|
"build:beta",
|
|
"build:desktop",
|
|
"start",
|
|
"start:desktop",
|
|
"test:e2e",
|
|
"test",
|
|
"run-android",
|
|
"run-ios",
|
|
"build-ios",
|
|
"build-android",
|
|
"release-android",
|
|
"release-android-bundle",
|
|
"release-ios",
|
|
"repack"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|