-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.91 KB
/
package.json
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
{
"name": "@lokalise/fastify-extras",
"version": "25.2.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"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "shx rm -rf ./dist && tsc",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run lint && npm run test:coverage",
"lint": "biome check . && tsc --project tsconfig.lint.json --noEmit",
"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.3.6",
"@bugsnag/js": "^8.1.2",
"@lokalise/background-jobs-common": "^8.0.0",
"@lokalise/error-utils": "^2.2.0",
"@splitsoftware/splitio": "^11.0.1",
"@supercharge/promise-pool": "^3.2.0",
"fastify-metrics": "^12.1.0",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"prom-client": "^15.1.3",
"toad-cache": "^3.7.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@fastify/jwt": "^9.0.1",
"@lokalise/node-core": ">=12.0.0",
"bullmq": "^5.19.0",
"fastify": "^5.0.0",
"ioredis": "^5.4.1",
"newrelic": ">=11.13.0",
"pino": "^9.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@amplitude/analytics-types": "^2.8.4",
"@biomejs/biome": "^1.9.4",
"@lokalise/backend-http-client": "^2.4.0",
"@lokalise/biome-config": "^1.5.0",
"@lokalise/node-core": "^13.1.0",
"@types/newrelic": "^9.14.5",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"auto-changelog": "^2.4.0",
"bullmq": "^5.21.1",
"fastify": "^5.1.0",
"fastify-type-provider-zod": "^4.0.2",
"ioredis": "^5.4.1",
"newrelic": "12.7.0",
"pino": "^9.4.0",
"pino-pretty": "^13.0.0",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"zod": "^3.23.8"
},
"engines": {
"node": ">=20"
}
}