sourcebot/packages/backend/package.json

42 lines
1.4 KiB
JSON
Raw Normal View History

2024-10-17 20:31:18 +00:00
{
"name": "@sourcebot/backend",
"version": "0.1.0",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"dev:watch": "yarn generate:types && tsc-watch --preserveWatchOutput --onSuccess \"yarn dev --configPath ../../config.json --cacheDir ../../.sourcebot\"",
"dev": "export PATH=\"$PWD/../../bin:$PATH\" && export CTAGS_COMMAND=ctags && node ./dist/index.js",
"build": "yarn generate:types && tsc",
"generate:types": "tsx tools/generateTypes.ts",
"test": "vitest --config ./vitest.config.ts",
"playground": "tsx tools/playground.ts"
2024-10-17 20:31:18 +00:00
},
"devDependencies": {
"@types/argparse": "^2.0.16",
2024-11-07 02:28:10 +00:00
"@types/micromatch": "^4.0.9",
2024-10-17 20:31:18 +00:00
"@types/node": "^22.7.5",
"json-schema-to-typescript": "^15.0.2",
"tsc-watch": "^6.2.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.4"
2024-10-17 20:31:18 +00:00
},
"dependencies": {
"@gitbeaker/rest": "^40.5.1",
"@octokit/rest": "^21.0.2",
"argparse": "^2.0.1",
"bull": "^4.16.5",
2024-10-23 03:06:36 +00:00
"cross-fetch": "^4.0.0",
2024-11-10 00:40:07 +00:00
"dotenv": "^16.4.5",
2024-10-23 03:06:36 +00:00
"gitea-js": "^1.22.0",
"glob": "^11.0.0",
2024-10-17 20:31:18 +00:00
"lowdb": "^7.0.1",
2024-11-07 02:28:10 +00:00
"micromatch": "^4.0.8",
2024-11-10 00:40:07 +00:00
"posthog-node": "^4.2.1",
2024-10-17 20:31:18 +00:00
"simple-git": "^3.27.0",
"strip-json-comments": "^5.0.1",
"winston": "^3.15.0"
}
}