forked from highlight/highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.58 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
{
"name": "highlight",
"private": true,
"version": "1.0.0",
"repository": "[email protected]:highlight-run/highlight.git",
"author": "Highlight",
"license": "MIT",
"dependencies": {
"concurrently": "^6.5.1",
"react-markdown": "^8.0.5"
},
"workspaces": [
"e2e/*",
"packages/*",
"frontend",
"sdk/client",
"sdk/firstload",
"sdk/highlight-apollo",
"sdk/highlight-cloudflare",
"sdk/highlight-nest",
"sdk/highlight-next",
"sdk/highlight-node",
"sdk/highlight-react",
"render",
"rrweb/packages/*",
"scripts",
"sourcemap-uploader"
],
"scripts": {
"build:all": "yarn turbo run prepublish build",
"build:backend": "cd backend && go build",
"build:frontend": "yarn turbo run build --filter frontend...",
"build:sdk": "yarn turbo run build --filter @highlight-run/cloudflare --filter @highlight-run/react --filter @highlight-run/apollo... --filter @highlight-run/next... --filter @highlight-run/nest...",
"cy:run": "cypress run",
"cy:run:chrome": "cypress run --headed --browser chrome",
"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 --filter frontend...",
"dev:ui": "yarn turbo run dev --filter @highlight-run/ui...",
"dev:redis": "redis-server",
"docker:frontend": "yarn turbo run dev --filter frontend...",
"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=!@highlight-run/rrweb --filter=!@highlight-run/rrweb-types --filter=!@highlight-run/rrweb-snapshot --filter=!@highlight-run/rrweb-player --filter=!@highlight-run/rrdom --filter=!@highlight-run/rrdom-nodejs",
"prepare": "husky install && patch-package",
"preinstall": "git submodule update --init --recursive || true",
"prepublish": "yarn workspace scripts prepublish:client",
"private-gen": "cd backend && make private-gen",
"public-gen": "cd backend && make public-gen",
"publish:all": "run-p --print-label publish:client publish:turbo publish:render",
"publish:client": "yarn workspace scripts publish:client",
"publish:render": "yarn workspace render publish",
"publish:turbo": "yarn workspaces foreach --no-private --from '@highlight-run/*' npm publish --access public --tolerate-republish && yarn workspace highlight.run npm publish --access public --tolerate-republish",
"test:all": "yarn turbo run test --filter=!@highlight-run/rrweb --filter=!@highlight-run/rrweb-types --filter=!@highlight-run/rrweb-snapshot --filter=!@highlight-run/rrweb-player --filter=!@highlight-run/rrdom --filter=!@highlight-run/rrdom-nodejs",
"sourcemaps:frontend": "yarn workspace @highlight-run/frontend sourcemaps"
},
"devDependencies": {
"chalk": "^5.0.1",
"cypress": "^10.8.0",
"husky": "^8.0.1",
"hygen": "^6.2.7",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"turbo": "^1.7.2"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/dom-webcodecs": "0.1.4",
"ansi-regex": "3.0.1",
"ejs": "3.1.7",
"eventsource": "1.1.1",
"glob-parent": "5.1.2",
"lodash": "4.17.21",
"minimist": "1.2.6",
"node-fetch": "2.6.7",
"normalize-url": "4.5.1",
"nth-check": "2.0.1",
"object-path": "0.11.8",
"prismjs": "1.27.0",
"tmpl": "1.0.5",
"trim-newlines": "3.0.1",
"trim": "0.0.3",
"minimatch": "3.0.5"
}
}