-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.22 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.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
{
"private": true,
"name": "proxy-monorepo",
"repository": "https://github.com/growthbook/growthbook-proxy",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.33.0",
"description": "GrowthBook proxy server for caching, realtime updates, telemetry, etc",
"license": "MIT",
"author": "Bryce Fitzsimons",
"scripts": {
"prepare": "husky",
"lint": "eslint './**/*.{ts,tsx,js,jsx}' --fix --max-warnings 0 --cache --cache-strategy content",
"lint:ci": "eslint './**/*.{ts,tsx,js,jsx}' --max-warnings 0 --cache --cache-strategy content",
"build:clean": "pnpm -r build:clean",
"build:deps": "pnpm --filter @growthbook/proxy-eval --filter @growthbook/edge-utils build",
"build:deps:proxy": "pnpm --filter @growthbook/proxy-eval build",
"build:apps": "pnpm --filter @growthbook/proxy --filter @growthbook/edge-cloudflare --filter @growthbook/edge-lambda --filter @growthbook/edge-express build",
"build": "pnpm build:deps && pnpm build:apps",
"build:proxy": "pnpm build:deps:proxy && pnpm --filter @growthbook/proxy build",
"type-check": "pnpm -r type-check",
"start": "pm2-runtime start ecosystem.config.js",
"start:with-tracing": "TRACING_ENABLED=true pm2-runtime start ecosystem.config.js",
"dev": "pnpm -r dev",
"dev:proxy": "pnpm --filter @growthbook/proxy --filter @growthbook/proxy-eval dev",
"dev:edge": "pnpm --filter @growthbook/edge-utils --filter @growthbook/edge-express dev"
},
"dependencies": {
"pm2": "^6.0.14"
},
"lint-staged": {
"./**/*.{json,md,yaml,yml}": [
"prettier --write"
],
"./**/*.{ts,tsx,js,jsx}": [
"eslint --fix --max-warnings 0 --cache --cache-strategy content"
]
},
"pnpm": {
"overrides": {
"picomatch@2": ">=2.3.2",
"path-to-regexp@8": ">=8.4.0"
}
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"globals": "^14.0.0",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}