-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 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
{
"name": "ai-efficiency-tracker",
"version": "1.0.0",
"description": "Track AI-assisted development efficiency with Kiro integration",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"dev:worker": "ts-node-dev --respawn --transpile-only src/worker.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:worker": "node dist/worker.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"keywords": [
"ai",
"efficiency",
"tracking",
"kiro",
"metrics"
],
"author": "",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@octokit/rest": "^20.0.2",
"@prisma/client": "^5.9.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jira.js": "^3.0.1",
"node-cron": "^3.0.3",
"prom-client": "^15.1.0",
"puppeteer": "^21.11.0",
"socket.io": "^4.6.1",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@octokit/types": "^12.4.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/node-cron": "^3.0.11",
"@types/puppeteer": "^7.0.4",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"fast-check": "^4.5.3",
"jest": "^29.7.0",
"nock": "^13.5.0",
"prettier": "^3.2.4",
"prisma": "^5.9.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}