Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
557 changes: 557 additions & 0 deletions DESKTOP_APP_API.md

Large diffs are not rendered by default.

87 changes: 1 addition & 86 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "npm run build && node --test tests/unit.test.js tests/integration.test.js",
"test:unit": "npm run build && node --test tests/unit.test.js",
"test:integration": "npm run build && node --test tests/integration.test.js",
"test:grouped-fvc": "node test-grouped-flow-value-collector-blocks-updated.js",
"test:e2e": "node test-e2e-desktop.js"
},
"author": "Corti ApS",
"license": "UNLICENSED",
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2"
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.19",
Expand Down
Loading