-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2 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
{
"name": "developer-metrics-api",
"version": "1.0.0",
"description": "Production-grade rate-limited API for Git repository analytics",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --exit-child src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:prod": "npm run build && npm run start",
"test": "jest --config jest.config.ts",
"test:watch": "jest --config jest.config.ts --watch",
"test:coverage": "jest --config jest.config.ts --coverage",
"test:verbose": "jest --config jest.config.ts --verbose",
"test:unit": "jest --config jest.unit.config.ts",
"test:integration": "jest --config jest.integration.config.ts",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"lint:all": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"migrate": "ts-node migrations/migrate.ts",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"author": "ajil",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^25.1.0",
"@types/pg": "^8.16.0",
"@types/redis": "^4.0.10",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"nock": "^14.0.10",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"pg": "^8.17.2",
"redis": "^5.10.0",
"simple-git": "^3.30.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
}
}