forked from gear5labs/chenpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.01 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "chenpilot-experimental",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:performance": "node --expose-gc node_modules/.bin/jest tests/performance --runInBand",
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"typeorm": "typeorm-ts-node-commonjs",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run -d ./src/config/Datasource.ts",
"migration:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert -d ./src/config/Datasource.ts",
"schema:sync": "npm run typeorm schema:sync -- -d src/config/Datasource.ts",
"migration:show": "npm run typeorm migration:show -- -d src/config/Datasource.ts",
"migration:generate": "npm run typeorm migration:generate -- -d src/config/Datasource.ts -p src/migrations/",
"cleanup:tokens": "ts-node src/scripts/cleanupTokens.ts",
"test:webhooks": "ts-node src/scripts/testWebhookIdempotency.ts",
"build": "tsc",
"prepare": "husky",
"gen:docs": "node scripts/generateToolDocs.mjs"
},
"lint-staged": {
"*.{ts,js,mjs}": "eslint --fix",
"src/Agents/tools/*.ts": "npm run gen:docs",
"*.{ts,js,mjs,json,md}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@anthropic-ai/sdk": "^0.62.0",
"@stellar/stellar-sdk": "^14.4.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"bcrypt": "^6.0.0",
"class-validator": "^0.14.3",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"ipaddr.js": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.9",
"pg": "^8.16.3",
"redis": "^5.11.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"starknet": "^7.6.4",
"stellar-sdk": "^13.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"tsyringe": "^4.10.0",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@eslint/js": "^9.39.2",
"@jest/globals": "30.2.0",
"@openzeppelin/contracts": "^5.6.1",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"fast-check": "^4.5.3",
"globals": "^17.2.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.54.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
}
}