actual/packages/loot-core/package.json
Tom French dc53a74459
Separate external, monorepo and internal imports (#237)
* style: enforce ordering of imports

* style: sort imports in loot-core

* style: sort imports in desktop-client

* style: sort imports in loot-design

* style: manual fixes
2022-09-02 12:43:37 +01:00

85 lines
2.6 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": "cross-env NODE_ENV=production ./bin/build-browser",
"watch:browser": "cross-env NODE_ENV=development ./bin/build-browser",
"lint": "eslint src",
"test": "npm-run-all -cp 'test:*'",
"test:node": "jest -c jest.config.js",
"test:web": "jest -c jest.web.config.js"
},
"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",
"@types/jest": "^27.5.0",
"adm-zip": "^0.5.9",
"babel-loader": "^8.0.6",
"buffer": "^5.5.0",
"cross-env": "^7.0.3",
"damerau-levenshtein": "^1.0.4",
"date-fns": "2.0.0-alpha.27",
"eslint": "5.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.0.82",
"fake-indexeddb": "^3.1.3",
"fast-check": "2.13.0",
"fast-glob": "^2.2.0",
"jest": "^28.1.0",
"jsverify": "^0.8.4",
"lru-cache": "^5.1.1",
"memfs": "3.1.1",
"memoize-one": "^4.0.0",
"mock-require": "^3.0.2",
"mockdate": "^3.0.5",
"murmurhash": "^0.0.2",
"npm-run-all": "^4.1.3",
"perf-deets": "^1.0.15",
"prettier": "^1.19.1",
"sanitize-filename": "^1.6.1",
"search-query-parser": "^1.3.0",
"snapshot-diff": "^0.2.2",
"source-map": "^0.7.3",
"throttleit": "^1.0.0",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"uuid": "3.3.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"ws": "^4.1.0",
"yargs": "^9.0.1"
}
}