-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "whereby-sdk-monorepo",
"private": true,
"version": "0.0.0",
"author": "Whereby AS",
"license": "MIT",
"packageManager": "yarn@1.22.19",
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"dev": "turbo dev --filter=@whereby.com/browser-sdk",
"dev:embed-element-app": "turbo dev --filter=embed-element-app",
"dev:telehealth-app": "turbo dev --filter=telehealth-tutorial-app",
"dev:quiz-app": "turbo dev --filter=quiz-app",
"dev:sample-app": "turbo dev --filter=sample-app",
"dev:nextjs-example": "turbo dev --filter=nextjs-example",
"dev:react-native-webview-example": "turbo dev --filter=react-native-webview-example",
"release": "yarn build && changeset publish",
"test": "turbo test",
"test:lint": "turbo test:lint",
"test:e2e": "turbo test:e2e",
"test:attw": "turbo test:attw",
"clean": "turbo clean && rm -rf dist node_modules .turbo"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@changesets/cli": "^2.27.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/btoa": "^1.2.3",
"@types/chrome": "^0.0.210",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.24",
"@types/runes": "^0.4.3",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^9.0.8",
"@types/uuid-validate": "^0.0.3",
"@whereby.com/eslint-config": "*",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.14.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"turbo": "^2.0.14"
},
"dependencies": {
"typescript": "^5.3.3"
},
"engines": {
"node": "^20"
}
}