-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.56 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
92
{
"name": "athenacore",
"version": "2.0.0",
"description": "Sophisticated autonomous operations framework for real-time AI augmentation",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "ts-node src/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm test",
"deploy": "npm run build && npm run test:coverage",
"migrate": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"studio": "prisma studio",
"seed": "ts-node prisma/seed.ts",
"openapi": "ts-node src/generate-openapi.ts",
"gen:sdk": "openapi --input ./openapi.json --output ./sdk --name AthenaSDK --client axios"
},
"keywords": [
"ai",
"autonomous",
"llm",
"trading",
"framework"
],
"author": "Sunny & Mrs. K",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/helmet": "^11.0.1",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^8.0.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^2.0.0",
"@prisma/client": "^5.10.2",
"@types/dotenv": "^6.1.1",
"@types/node": "^20.11.0",
"bcryptjs": "^3.0.2",
"bullmq": "^5.3.0",
"dotenv": "^17.2.1",
"dotenv-flow": "^3.2.0",
"fast-jwt": "^5.0.6",
"fastify": "^4.26.1",
"fastify-plugin": "^5.0.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"openapi-typescript-codegen": "^0.27.0",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"tslib": "^2.6.2",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@fastify/type-provider-typebox": "^4.1.0",
"@types/bcryptjs": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"prisma": "^5.10.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"_moduleAliases": {
"@": "."
}
}