-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
82 lines (82 loc) · 2.07 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
{
"name": "@unleash/proxy",
"version": "1.4.8",
"description": "The Unleash Proxy (Open-Source)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"example": "yarn run build && node example",
"lint": "biome lint --write ./src",
"test": "jest",
"updateSnapshots": "jest -u",
"prepare": "npm run build",
"dev": "ENABLE_OAS=true ts-node-dev src/start.ts",
"fmt": "biome format ./src --write",
"fmt:check": "biome format ./src",
"biome:ci": "biome ci ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unleash/unleash-proxy.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"Unleash",
"frontend",
"native",
"ios",
"android",
"feature",
"flags"
],
"author": "@unleash",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Unleash/unleash-proxy/issues"
},
"homepage": "https://github.com/Unleash/unleash-proxy#readme",
"dependencies": {
"@wesleytodd/openapi": "^1.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.21.0",
"json-schema-to-ts": "^3.1.0",
"openapi-types": "^12.1.3",
"prom-client": "^15.1.3",
"qs": "^6.12.3",
"type-is": "^1.6.18",
"unleash-client": "^6.1.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "10.1.0",
"@babel/core": "^7.25.2",
"@biomejs/biome": "^1.9.3",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "20.14.8",
"@types/supertest": "^6.0.2",
"@types/type-is": "^1.6.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"semver": "^7.6.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"resolutions": {
"cookie": "^1.0.0",
"wrap-ansi": "7.0.0",
"string-width": "4.1.0",
"qs": "^6.9.7",
"json5": "^2.2.2",
"cookiejar": "^2.1.4",
"router/path-to-regexp": "0.1.10"
},
"packageManager": "[email protected]"
}