Skip to content
Snippets Groups Projects
  • Jed Fox's avatar
    0688c258
    Remove/dedupe/upgrade several dependencies (#702) · 0688c258
    Jed Fox authored
    * Run `yarn dedupe`
    
    * Update to better-sqlite3@latest
    
    * Remove react-native
    
    * Remove a bunch more unused deps
    
    * Update mitt to 3.0
    
    * Remove a few more
    
    * Remove react-native-gesture-handler
    
    * Revert "Update to better-sqlite3@latest"
    
    This reverts commit d436bc8d73f2745f484def4e40596322d0c56458.
    
    * Dedupe better-sqlite3 versions
    
    * snapshots!
    
    * Fix jsdom error
    
    * Revert "Dedupe better-sqlite3 versions"
    
    This reverts commit f99d2ab6f9311663e3312ab5b00bc81c068f040d.
    
    * Add back jest-watch-typeahead
    
    * Fix conflicting Jest version
    
    (The jest-environment-jsdom package that is magically available seems to only be compatible with Jest 27)
    Remove/dedupe/upgrade several dependencies (#702)
    Jed Fox authored
    * Run `yarn dedupe`
    
    * Update to better-sqlite3@latest
    
    * Remove react-native
    
    * Remove a bunch more unused deps
    
    * Update mitt to 3.0
    
    * Remove a few more
    
    * Remove react-native-gesture-handler
    
    * Revert "Update to better-sqlite3@latest"
    
    This reverts commit d436bc8d73f2745f484def4e40596322d0c56458.
    
    * Dedupe better-sqlite3 versions
    
    * snapshots!
    
    * Fix jsdom error
    
    * Revert "Dedupe better-sqlite3 versions"
    
    This reverts commit f99d2ab6f9311663e3312ab5b00bc81c068f040d.
    
    * Add back jest-watch-typeahead
    
    * Fix conflicting Jest version
    
    (The jest-environment-jsdom package that is magically available seems to only be compatible with Jest 27)
This project manages its dependencies using npm. Learn more
package.json 1.82 KiB
{
  "name": "actual",
  "version": "0.0.1",
  "private": true,
  "description": "A local-first personal finance system",
  "homepage": "https://github.com/actualbudget/actual/",
  "bugs": {
    "url": "https://github.com/actualbudget/actual/issues/"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:actualbudget/actual.git"
  },
  "license": "MIT",
  "workspaces": {
    "packages": [
      "packages/*"
    ]
  },
  "scripts": {
    "start": "npm-run-all --parallel 'start:desktop-*'",
    "start:desktop-node": "yarn workspace loot-core watch:node",
    "start:desktop-client": "yarn workspace @actual-app/web watch",
    "start:desktop-electron": "yarn workspace Actual watch",
    "start:browser": "npm-run-all --parallel 'start:browser-*'",
    "start:browser-backend": "yarn workspace loot-core watch:browser",
    "start:browser-frontend": "yarn workspace @actual-app/web start:browser",
    "test": "yarn workspaces foreach --parallel --verbose run test",
    "test:debug": "yarn workspaces foreach --verbose run test",
    "e2e": "yarn workspaces foreach --parallel --verbose run e2e",
    "rebuild-electron": "./node_modules/.bin/electron-rebuild -f -m ./packages/loot-core",
    "rebuild-node": "yarn workspace loot-core rebuild",
    "lint": "cross-env NODE_ENV=development yarn workspaces foreach --verbose run lint --max-warnings 0",
    "postinstall": "rm -rf ./packages/loot-design/node_modules/react && patch-package"
  },
  "devDependencies": {
    "cross-env": "^5.1.5",
    "eslint": "8.35.0",
    "eslint-config-react-app": "7.0.1",
    "eslint-plugin-prettier": "4.2.1",
    "npm-run-all": "^4.1.3",
    "patch-package": "^6.1.2",
    "prettier": "2.8.2",
    "react-refresh": "^0.14.0",
    "source-map-support": "^0.5.21"
  },
  "resolutions": {
    "react-error-overlay": "6.0.9"
  },
  "packageManager": "yarn@3.4.1"
}