forked from Unleash/unleash-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
{
"name": "@unleash/proxy",
"version": "0.4.0",
"description": "The Unleash Proxy (Open-Source)",
"main": "dist/index.js",
"scripts": {
"build": "tsc --pretty",
"example": "npm run build && node example",
"lint": "eslint ./src",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unleash/unleash-proxy.git"
},
"keywords": [
"Unleash",
"frontend",
"native",
"ios",
"android",
"feature",
"flags"
],
"author": "@unleash",
"license": "ISC",
"bugs": {
"url": "https://github.com/Unleash/unleash-proxy/issues"
},
"homepage": "https://github.com/Unleash/unleash-proxy#readme",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^17.4.0",
"unleash-client": "^3.10.1"
},
"devDependencies": {
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"babel-jest": "^27.0.2",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.3",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"overrides": [
{
"files": "*.{json,yaml,yml,md}",
"options": {
"tabWidth": 2
}
}
]
}
}