-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
144 lines (144 loc) · 5.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@posthog/plugin-server",
"version": "1.10.5",
"description": "PostHog Plugin Server",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"packageManager": "[email protected]",
"scripts": {
"test": "jest --runInBand --forceExit",
"functional_tests": "jest --config ./jest.config.functional.js",
"start": "pnpm start:dist",
"start:dist": "BASE_DIR=.. node dist/index.js",
"start:dev": "NODE_ENV=dev BASE_DIR=.. nodemon --watch src/ --exec node -r @swc-node/register src/index.ts",
"start:devNoWatch": "NODE_ENV=dev BASE_DIR=.. node -r @swc-node/register src/index.ts",
"build": "pnpm clean && pnpm compile",
"clean": "rm -rf dist/*",
"typescript:compile": "tsc -b",
"typescript:check": "tsc --noEmit -p .",
"compile": "pnpm typescript:compile",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prepublishOnly": "pnpm build",
"setup:dev:clickhouse": "cd .. && DEBUG=1 python manage.py migrate_clickhouse",
"setup:test": "cd .. && TEST=1 python manage.py setup_test_environment",
"services:start": "cd .. && docker compose -f docker-compose.dev.yml up",
"services:stop": "cd .. && docker compose -f docker-compose.dev.yml down",
"services:clean": "cd .. && docker compose -f docker-compose.dev.yml rm -v",
"services": "pnpm services:stop && pnpm services:clean && pnpm services:start"
},
"bin": {
"posthog-plugin-server": "bin/posthog-plugin-server"
},
"author": "PostHog <[email protected]>",
"repository": "https://github.com/PostHog/posthog-plugin-server",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.315.0",
"@aws-sdk/lib-storage": "^3.315.0",
"@babel/core": "^7.18.10",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@babel/standalone": "^7.18.12",
"@google-cloud/bigquery": "^5.6.0",
"@google-cloud/pubsub": "3.0.1",
"@google-cloud/storage": "^5.8.5",
"@maxmind/geoip2-node": "^3.4.0",
"@posthog/clickhouse": "^1.7.0",
"@posthog/plugin-contrib": "^0.0.5",
"@posthog/plugin-scaffold": "1.4.0",
"@sentry/node": "^7.49.0",
"@sentry/profiling-node": "^0.3.0",
"@sentry/tracing": "^7.17.4",
"@sentry/utils": "^7.17.4",
"@types/lru-cache": "^5.1.0",
"@types/tail": "^2.2.1",
"asn1.js": "^5.4.1",
"aws-sdk": "^2.927.0",
"escape-string-regexp": "^4.0.0",
"ethers": "^5.5.2",
"faker": "^5.5.3",
"fast-deep-equal": "^3.1.3",
"generic-pool": "^3.7.1",
"graphile-worker": "0.13.0",
"hot-shots": "^9.2.0",
"ioredis": "^4.27.6",
"ipaddr.js": "^2.1.0",
"jsonwebtoken": "^9.0.0",
"kafkajs": "^2.2.0",
"kafkajs-snappy": "^1.1.0",
"lru-cache": "^6.0.0",
"luxon": "^1.27.0",
"node-fetch": "^2.6.1",
"node-rdkafka-acosom": "2.16.1",
"node-schedule": "^2.1.0",
"pg": "^8.6.0",
"pino": "^8.6.0",
"posthog-node": "2.0.2",
"pretty-bytes": "^5.6.0",
"prom-client": "^14.2.0",
"re2": "^1.20.3",
"safe-stable-stringify": "^2.4.0",
"snowflake-sdk": "^1.6.10",
"tail": "^2.2.6",
"uuid": "^8.3.2",
"v8-profiler-next": "^1.9.0",
"vm2": "3.9.18"
},
"devDependencies": {
"0x": "^5.5.0",
"@babel/cli": "^7.18.10",
"@babel/types": "^7.20.2",
"@sentry/types": "^7.17.4",
"@swc-node/register": "^1.5.1",
"@swc/core": "^1.2.186",
"@swc/jest": "^0.2.21",
"@types/adm-zip": "^0.4.34",
"@types/babel__core": "^7.1.19",
"@types/babel__standalone": "^7.1.4",
"@types/faker": "^5.5.7",
"@types/generic-pool": "^3.1.9",
"@types/ioredis": "^4.26.4",
"@types/jest": "^28.1.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/long": "4.x.x",
"@types/luxon": "^1.27.0",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.5.10",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.0",
"@types/redlock": "^4.0.1",
"@types/snowflake-sdk": "^1.5.1",
"@types/tar-stream": "^2.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-eslint": "^10.1.0",
"c8": "^7.12.0",
"deepmerge": "^4.2.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.1",
"nodemon": "^2.0.22",
"parse-prometheus-text-format": "^1.1.1",
"pino-pretty": "^9.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}