mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 09:50:18 -05:00
* Bundle loot-core types into the API So we can have loot-core be the source of truth for some types that get passed through - Improves downstream development with API by including types - Use path aliases for dist vs dev tsconfigs - Convert api index to typescript as example - Permit ts-ignore for issues with our version of typescript --------- Co-authored-by: Matiss Janis Aboltins <matiss@mja.lv>
84 lines
2.5 KiB
JSON
84 lines
2.5 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 ./bin/build-api",
|
|
"build:browser": "cross-env NODE_ENV=production ./bin/build-browser",
|
|
"watch:browser": "cross-env NODE_ENV=development ./bin/build-browser",
|
|
"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": {
|
|
"@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",
|
|
"@types/adm-zip": "^0.5.0",
|
|
"absurd-sql": "0.0.54",
|
|
"assert": "^2.0.0",
|
|
"better-sqlite3": "^9.2.2",
|
|
"browserify-zlib": "^0.2.0",
|
|
"core-js": "^3.8.3",
|
|
"csv-parse": "^4.10.1",
|
|
"csv-stringify": "^5.3.6",
|
|
"deep-equal": "^2.0.5",
|
|
"md5": "^2.3.0",
|
|
"mitt": "^3.0.0",
|
|
"node-fetch": "^2.6.9",
|
|
"path-browserify": "^1.0.1",
|
|
"process": "^0.11.10",
|
|
"reselect": "^4.1.8",
|
|
"stream-browserify": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@actual-app/api": "*",
|
|
"@actual-app/crdt": "*",
|
|
"@swc/core": "^1.3.82",
|
|
"@swc/helpers": "^0.5.1",
|
|
"@swc/jest": "^0.2.29",
|
|
"@types/better-sqlite3": "^7.6.8",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/jlongster__sql.js": "npm:@types/sql.js@latest",
|
|
"@types/pegjs": "^0.10.3",
|
|
"@types/react-redux": "^7.1.25",
|
|
"@types/uuid": "^9.0.2",
|
|
"@types/webpack": "^5.28.2",
|
|
"@types/webpack-bundle-analyzer": "^4.6.0",
|
|
"adm-zip": "^0.5.9",
|
|
"buffer": "^6.0.3",
|
|
"cross-env": "^7.0.3",
|
|
"date-fns": "^2.29.3",
|
|
"fake-indexeddb": "^3.1.3",
|
|
"fast-check": "3.7.1",
|
|
"jest": "^27.0.0",
|
|
"jsverify": "^0.8.4",
|
|
"lru-cache": "^5.1.1",
|
|
"memfs": "3.1.1",
|
|
"memoize-one": "^6.0.0",
|
|
"mockdate": "^3.0.5",
|
|
"npm-run-all": "^4.1.3",
|
|
"peggy": "3.0.2",
|
|
"slash": "3.0.0",
|
|
"snapshot-diff": "^0.10.0",
|
|
"source-map": "^0.7.3",
|
|
"swc-loader": "^0.2.3",
|
|
"terser-webpack-plugin": "^5.3.9",
|
|
"throttleit": "^1.0.0",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.4",
|
|
"uuid": "^9.0.0",
|
|
"webpack": "^5.88.2",
|
|
"webpack-bundle-analyzer": "^4.9.1",
|
|
"webpack-cli": "^5.1.4",
|
|
"yargs": "^9.0.1"
|
|
}
|
|
}
|