-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.22 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@lokalise/fastify-extras",
"version": "30.7.0",
"description": "Opinionated set of fastify plugins, commonly used in Lokalise",
"author": {
"name": "Lokalise",
"url": "https://lokalise.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/lokalise/fastify-extras.git"
},
"keywords": ["fastify", "newrelic", "bugsnag", "request-context", "request-id", "split-io"],
"homepage": "https://github.com/lokalise/fastify-extras",
"files": ["dist/**", "LICENSE", "README.md"],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run lint && npm run test:coverage",
"lint": "biome check . && tsc",
"lint:fix": "biome check --write",
"docker:start": "docker compose -f docker-compose.yml up --build -d redis && docker compose -f docker-compose.yml up --build -d wait_for_redis",
"docker:stop": "docker compose -f docker-compose.yml down",
"version": "auto-changelog -p && git add CHANGELOG.md && biome check --write package.json && git add package.json"
},
"dependencies": {
"@amplitude/analytics-node": "^1.5.7",
"@bugsnag/js": "^8.4.0",
"@lokalise/error-utils": "^3.0.0",
"@splitsoftware/splitio": "^11.6.0",
"@supercharge/promise-pool": "^3.2.0",
"fastify-metrics": "^13.2.0",
"fastify-plugin": "^5.0.1",
"prom-client": "^15.1.3",
"toad-cache": "^3.7.0"
},
"peerDependencies": {
"@fastify/jwt": ">=9.1.0",
"@lokalise/api-contracts": ">=5.0.0",
"@lokalise/background-jobs-common": ">=12.0.0",
"@lokalise/node-core": ">=14.0.0",
"@opentelemetry/api": ">=1.9.0",
"bullmq": "^5.19.0",
"fastify": "^5.7.1",
"fastify-type-provider-zod": ">=6.0.0",
"ioredis": "^5.7.0",
"dd-trace": ">=5.0.0",
"newrelic": ">=11.13.0",
"pino": ">=9.9.0",
"zod": ">=4.1.5"
},
"devDependencies": {
"@amplitude/analytics-types": "^2.10.0",
"@biomejs/biome": "^1.9.4",
"@lokalise/backend-http-client": "^10.0.0",
"@opentelemetry/api": "^1.9.0",
"@lokalise/background-jobs-common": "^14.0.2",
"@lokalise/biome-config": "^2.0.0",
"@lokalise/node-core": "^14.4.2",
"@lokalise/tsconfig": "^3.0.0",
"@types/newrelic": "^9.14.8",
"@types/node": "^24.7.0",
"@vitest/coverage-v8": "^3.2.4",
"auto-changelog": "^2.4.0",
"bullmq": "^5.67.1",
"dd-trace": "^5.85.0",
"fastify": "^5.7.2",
"fastify-type-provider-zod": "^6.0.0",
"ioredis": "^5.6.1",
"newrelic": "13.17.0",
"pino": "^10.0.0",
"pino-pretty": "^13.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"zod": "^4.1.12"
},
"engines": {
"node": ">=20"
}
}