-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 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
{
"name": "@finos/git-proxy-license-inventory",
"version": "0.0.2",
"author": "git-proxy contributors",
"license": "Apache-2.0",
"files": [
"dist"
],
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "rimraf dist && tsc --project tsconfig.publish.json && tsc-alias",
"type-check": "tsc --noEmit",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"mongoose": "^8.10.1",
"pino": "^9.6.0",
"pino-caller": "^3.4.0",
"pino-http": "^10.4.0",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@jest/globals": "^30.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.13.5",
"@types/semver": "^7.5.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"cross-env": "^10.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"mongodb-memory-server-core": "^10.1.4",
"nodemon": "^3.1.9",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"optionalDependencies": {
"@opentelemetry/auto-instrumentations-node": "^0.56.1"
}
}