-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "cloud-cost-analyzer-backend",
"version": "1.0.0",
"description": "ESLint for cloud costs — static analysis backend",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js",
"migrate": "tsx src/db/migrate.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/jwt": "^7.2.4",
"@fastify/rate-limit": "^9.1.0",
"@fastify/websocket": "^8.3.1",
"@octokit/rest": "^22.0.1",
"@typescript-eslint/typescript-estree": "^7.13.1",
"bullmq": "^5.7.7",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"ethers": "^6.16.0",
"fastify": "^4.28.1",
"googleapis": "^171.4.0",
"got": "^13.0.0",
"ioredis": "^5.3.2",
"pg": "^8.12.0",
"pino": "^9.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"drizzle-kit": "^0.22.7",
"pino-pretty": "^13.1.3",
"supertest": "^7.0.0",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20"
}
}