actual/packages/loot-core/package.json
Tom French c6335b4f57 Merge branch 'master' into fix-splitfreq-weights
* master: (43 commits)
  build: move dev dependencies from dependencies array and remove unused dependencies
  build: fix offical node version to 16.15.0
  chore: delete unused directory `browser/build`
  docs: remove holiday text from README
  build: update downshift patch to match installed version
  style: revert to using var to minimise diff
  style: replace var with const
  fix: enforce proper length constraints on timestamp counter and node id
  test: fix test to properly pass in invalid inputs individually
  ci: re-add runner os specific caches
  ci: turn boilerplate into composite action
  ci: only build electron app on master
  docs: add comment explaining how to reactivate code signing
  build: remove signing config
  ci: avoid attempting to get CSC_KEY_PASSWORD interactively in github actions
  ci: always use bash as the shell
  ci: cache node_modules per runner os
  ci: avoid duplicate linting in CI
  ci: add electron build to CI
  ci: build api and web packages in CI
  ...
2022-07-08 21:21:51 +01:00

73 lines
2.2 KiB
JSON

{
"name": "loot-core",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"build:node": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.desktop.config.js",
"watch:node": "cross-env NODE_ENV=development webpack --config ./webpack/webpack.desktop.config.js --watch",
"build:api": "cross-env NODE_ENV=development webpack --config ./webpack/webpack.api.config.js",
"build:browser": "NODE_ENV=production ./bin/build-browser",
"watch:browser": "NODE_ENV=development ./bin/build-browser",
"lint": "eslint src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/register": "^7.12.10",
"@jlongster/mixpanel": "^0.13.4",
"@jlongster/sql.js": "^1.6.7",
"@rschedule/core": "^1.2.0",
"@rschedule/ical-tools": "^1.2.0",
"@rschedule/json-tools": "^1.2.0",
"@rschedule/standard-date-adapter": "^1.2.0",
"@sentry/node": "^6.12.0",
"absurd-sql": "0.0.53",
"better-sqlite3": "7.4.1",
"core-js": "^3.8.3",
"csv-parse": "^4.10.1",
"csv-stringify": "^5.3.6",
"deep-equal": "^2.0.5",
"google-protobuf": "^3.12.0-rc.1",
"md5": "^2.3.0",
"mitt": "^2.1.0",
"node-fetch": "^1.6.3",
"node-libofx": "*",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@actual-app/api": "*",
"@actual-app/import-ynab4": "*",
"@babel/core": "~7.14.3",
"adm-zip": "cthackers/adm-zip#ff17ae85",
"babel-jest": "25.2.6",
"babel-loader": "^8.0.6",
"buffer": "^5.5.0",
"currency-formatter": "jlongster/currency-formatter",
"damerau-levenshtein": "^1.0.4",
"date-fns": "2.0.0-alpha.27",
"esm": "^3.0.82",
"fake-indexeddb": "^3.1.3",
"fast-check": "2.13.0",
"fast-glob": "^2.2.0",
"jest": "25.2.7",
"jsverify": "^0.8.4",
"lru-cache": "^5.1.1",
"memfs": "3.1.1",
"memoize-one": "^4.0.0",
"mockdate": "^3.0.5",
"mock-require": "^3.0.2",
"murmurhash": "^0.0.2",
"perf-deets": "^1.0.15",
"sanitize-filename": "^1.6.1",
"search-query-parser": "^1.3.0",
"source-map": "^0.7.3",
"snapshot-diff": "^0.2.2",
"throttleit": "^1.0.0",
"uuid": "3.3.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"ws": "^4.1.0",
"yargs": "^9.0.1"
}
}