forked from growthbook/growthbook-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "@growthbook/proxy",
"engines": {
"node": ">=16"
},
"description": "GrowthBook proxy server for caching, realtime updates, telemetry, etc",
"version": "1.0.20",
"main": "dist/app.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/growthbook/growthbook-proxy"
},
"author": "Bryce Fitzsimons",
"scripts": {
"lint": "eslint './**/*.{ts,js}' --fix --max-warnings 0 --cache --cache-strategy content",
"build:clean": "rimraf -rf dist",
"build": "tsc",
"type-check": "tsc --pretty --noEmit",
"start": "node dist/index.js",
"dev": "concurrently 'tsc --watch' 'nodemon -q dist/index.js | yarn pino-pretty'"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"got": "11.8.5",
"http-proxy-middleware": "^2.0.6",
"ioredis": "^5.3.2",
"mongodb": "^4.13.0",
"pino-http": "^8.3.1",
"spdy": "^4.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/pino": "^7.0.5",
"@types/spdy": "^3.4.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"concurrently": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
}
}