forked from highlight/highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
173 lines (173 loc) · 7.32 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "highlight",
"private": true,
"version": "1.0.0",
"repository": "git@github.com:highlight-run/highlight.git",
"author": "Highlight",
"license": "Apache-2.0",
"workspaces": [
"docs-content",
"e2e/*",
"packages/*",
"highlight.io",
"frontend",
"sdk/client",
"sdk/firstload",
"sdk/highlight-apollo",
"sdk/highlight-cloudflare",
"sdk/highlightinc-highlight-datasource",
"sdk/highlight-nest",
"sdk/highlight-next",
"sdk/highlight-node",
"sdk/highlight-react",
"sdk/highlight-remix",
"sdk/pino",
"render",
"rrweb/packages/*",
"opentelemetry-sdk-workers/packages/opentelemetry-sdk-workers",
"scripts",
"sourcemap-uploader"
],
"scripts": {
"build:all": "yarn turbo run build",
"build:backend": "cd backend && go build",
"build:frontend": "yarn turbo run build --filter frontend...",
"build:sdk": "yarn turbo run build --filter highlight.run --filter @highlight-run/client --filter @highlight-run/cloudflare --filter @highlight-run/react --filter @highlight-run/apollo... --filter @highlight-run/next... --filter @highlight-run/nest... --filter @highlight-run/pino... --filter @highlight-run/remix...",
"cy:run": "cypress run",
"cy:run:chrome": "cypress run --headed --browser chrome",
"clean": "find . -depth -name node_modules -exec rm -r \"{}\" \\; && find . -name tsconfig.tsbuildinfo -delete && find . -depth -name dist -exec rm -r \"{}\" \\; && find . -depth -name build -exec rm -r \"{}\" \\; && find . -depth -name es -exec rm -r \"{}\" \\;",
"dev": "run-p --print-label --race 'dev:*'",
"dev:backend": "cd backend && make start",
"dev:components": "yarn turbo run dev --filter @highlight-run/component-preview...",
"dev:frontend": "doppler run -- yarn turbo run dev --concurrency 32 --filter frontend... --filter=!rrweb... --filter=!@highlight-run/ui...",
"dev:highlight.io": "doppler run -- yarn turbo run dev --filter highlight.io",
"dev:ui": "yarn turbo run dev --filter @highlight-run/ui...",
"dev:watch": "yarn turbo run dev:watch --concurrency=30",
"generate:antlr": "yarn generate:antlr:ts && yarn generate:antlr:go",
"generate:antlr:ts": "antlr4 -Dlanguage=TypeScript -o ./frontend/src/components/Search/Parser ./antlr/SearchGrammar.g4 && prettier --write ./frontend/src/components/Search/Parser/antlr/*.ts",
"generate:antlr:go": "antlr4 -Dlanguage=Go -o ./backend/parser ./antlr/SearchGrammar.g4",
"reflame": "cd frontend && yarn reflame",
"reflame-build": "cd frontend && yarn reflame-build",
"reflame-check": "./scripts/reflame-check.sh",
"dev:redis": "redis-server",
"docker:frontend": "yarn turbo run dev --filter frontend --filter highlight.run --filter @highlight-run/client",
"e2e:cloudflare": "yarn turbo run dev --filter cloudflare-worker...",
"e2e:express": "yarn turbo run dev --filter express...",
"e2e:nestjs": "yarn turbo run dev --filter nestjs",
"e2e:nextjs": "yarn turbo run dev --filter nextjs... --filter=!@highlight-run/client --filter=!highlight.run --filter=!@highlight-run/opentelemetry-sdk-workers",
"e2e:remix": "yarn turbo run dev --filter remix...",
"enforce-size": "yarn turbo run enforce-size --filter frontend...",
"format-check": "prettier --check --ignore-unknown .",
"format:all": "prettier --write --ignore-unknown .",
"frontend:start": "yarn dev:frontend",
"g": "yarn generate",
"generate": "hygen",
"lint": "yarn run turbo lint --filter=!rrweb --filter=!@rrweb/types --filter=!rrweb-snapshot --filter=!rrweb-player --filter=!rrdom --filter=!rrdom-nodejs",
"prepare": "husky install && patch-package",
"preinstall": "git submodule update --init --recursive || true",
"validate": "yarn workspace scripts validate:client",
"private-gen": "cd backend && make private-gen",
"public-gen": "cd backend && make public-gen",
"publish:ai": "yarn workspace @highlight-run/ai publish",
"publish:client": "yarn workspace scripts publish:client",
"publish:react-email-templates": "yarn workspace emails publish",
"publish:render": "yarn workspace render publish",
"publish:turbo": "yarn workspaces foreach -R --no-private --from '@highlight-run/*' npm publish --access public --tolerate-republish && yarn workspace highlight.run npm publish --access public --tolerate-republish && yarn workspace @highlight-run/opentelemetry-sdk-workers npm publish --access public --tolerate-republish",
"test:all": "yarn turbo run test --filter=!render --filter=!rrweb --filter=!@rrweb/types --filter=!rrweb-snapshot --filter=!rrweb-player --filter=!rrdom --filter=!rrdom-nodejs --filter=!nextjs",
"test:render": "yarn turbo run test --filter=render",
"sourcemaps:frontend": "yarn workspace @highlight-run/frontend sourcemaps"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"all-contributors-cli": "^6.26.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"cypress": "^13.7.0",
"esbuild": "^0.19.5",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-tsdoc": "^0.2.17",
"fflate": "^0.8.1",
"husky": "^8.0.1",
"hygen": "^6.2.7",
"node-gyp": "^10.0.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"postcss-modules": "^4.3.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"readdirp": "^3.6.0",
"turbo": "^1.12.4"
},
"packageManager": "yarn@4.2.2",
"resolutions": {
"@cypress/requests": "3.0.0",
"@opentelemetry/api": "1.8.0",
"@opentelemetry/auto-instrumentations-node": "0.43.0",
"@opentelemetry/core": "1.22.0",
"@opentelemetry/exporter-trace-otlp-http": "0.49.1",
"@opentelemetry/instrumentation": "0.49.1",
"@opentelemetry/otlp-exporter-base": "0.49.1",
"@opentelemetry/resources": "1.22.0",
"@opentelemetry/sdk-node": "0.49.1",
"@sideway/formula": "3.0.1",
"@types/dom-webcodecs": "0.1.5",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@typescript-eslint/parser": "7.1.1",
"ansi-color@^0.2.1": "patch:ansi-color@npm%3A0.2.1#./.yarn/patches/ansi-color-npm-0.2.1-f7243d10a4.patch",
"ansi-regex": "3.0.1",
"axios": "0.28.0",
"braces": "2.3.1",
"cross-fetch": "3.1.5",
"debug": "2.6.9",
"deep-object-diff": "1.1.9",
"degenerator": "5.0.1",
"ejs": "3.1.7",
"esbuild": "0.19.7",
"eventsource": "1.1.1",
"fast-json-patch": "3.1.1",
"fast-xml-parser": "4.1.2",
"fastify": "3.29.4",
"glob-parent": "5.1.2",
"got": "11.8.5",
"graphql^16": "16.8.1",
"hosted-git-info": "2.8.9",
"http-cache-semantics": "4.1.1",
"json5<2": "1.0.2",
"json5>=2": "2.2.2",
"jsonwebtoken": "9.0.0",
"loader-utils<2": "1.4.2",
"loader-utils>=2": "2.0.4",
"lodash": "4.17.21",
"lodash-es@^4.17.21": "patch:lodash-es@npm%3A4.17.21#./.yarn/patches/lodash-es-npm-4.17.21-b45832dfce.patch",
"log4js": "6.4.0",
"minimatch": "3.0.5",
"minimist": "1.2.6",
"next": "14.2.3",
"node-fetch": "2.6.7",
"node-forge": "1.3.0",
"normalize-url": "4.5.1",
"nth-check": "2.0.1",
"object-path": "0.11.8",
"prismjs": "1.27.0",
"protobufjs": "patch:protobufjs@npm%3Alatest#~/.yarn/patches/protobufjs-npm-7.2.6-4bb38caa1d.patch",
"react": "18.2.0",
"react-dom": "18.2.0",
"semver@7.3.5": "7.6.0",
"semver@7.3.8": "7.6.0",
"tmpl": "1.0.5",
"tough-cookie": "4.1.3",
"trim": "0.0.3",
"trim-newlines": "3.0.1",
"typescript": "4.9.5",
"ua-parser-js": "0.7.33",
"underscore": "1.13.6",
"undici": "5.28.3",
"webpack": "5.76.0",
"xml2js": "0.5.0",
"zod": "3.22.3"
}
}