-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.85 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
{
"name": "replay-cli",
"private": true,
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*",
"packages/*/example",
"scripts/*",
"examples/*"
],
"directories": {
"example": "examples"
},
"scripts": {
"build": "turbo run build --filter=\"./packages/*\"",
"watch": "turbo watch build --filter=\"./packages/*\"",
"test": "yarn run test:unit",
"test:unit": "yarn workspaces foreach --all --exclude=. --exclude=examples/create-react-app-typescript --exclude=packages/cypress/example --topological run test",
"typecheck": "turbo run typecheck --filter=\"./packages/*\" --filter=\"./scripts/*\"",
"typecheck:watch": "turbo watch typecheck --filter=\"./packages/*\" --filter=\"./scripts/*\"",
"lint": "prettier --check .",
"changeset": "changeset",
"release": "yarn workspaces foreach --no-private --all --topological npm publish --tolerate-republish --access public && changeset tag",
"release:pr": "yarn workspaces foreach --no-private --all --topological npm publish --tolerate-republish --access public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@replayio/protocol": "^0.73.0",
"@types/ws": "^8",
"prettier": "^2.7.1",
"turbo": "^2.0.5",
"typescript": "^5.5.2",
"ws": "^8.17.0"
},
"resolutions": {
"@jest/types": "^27.5.1",
"@types/jest": "^28.1.5",
"@types/node": "^20.11.27",
"@jest/environment@npm:^27.5.1": "patch:@jest/environment@npm%3A28.1.3#~/.yarn/patches/@jest-environment-npm-28.1.3-506a81a227.patch",
"@jest/environment@npm:^28.1.3": "patch:@jest/environment@npm%3A28.1.3#~/.yarn/patches/@jest-environment-npm-28.1.3-506a81a227.patch",
"superstruct": "patch:superstruct@npm%3A1.0.4#~/.yarn/patches/superstruct-npm-1.0.4-44d328b887.patch"
}
}