-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
127 lines (127 loc) · 4.15 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
{
"name": "@whereby.com/browser-sdk",
"version": "2.0.0",
"description": "Modules for integration Whereby video in web apps",
"author": "Whereby AS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whereby/browser-sdk.git"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"source": "src/index.js",
"exports": {
"./react": {
"import": "./dist/react/index.esm.js",
"types": "./dist/react/index.d.ts"
},
"./embed": {
"import": "./dist/embed/index.esm.js",
"types": "./dist/embed/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.esm.js",
"types": "./dist/utils/index.d.ts"
}
},
"typesVersions": {
"*": {
"react": [
"dist/react/index.d.ts"
],
"embed": [
"dist/embed/index.d.ts"
],
"utils": [
"dist/utils/index.d.ts"
]
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.js",
"build:storybook": "storybook build",
"dev": "storybook dev -p 6006",
"install:e2e-sample-app": "cd test/sample-app && yarn custom_install",
"start:e2e-sample-app": "cd test/sample-app && yarn start",
"test": "yarn test:lint && yarn test:unit",
"test:lint": "eslint src/",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:unit:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@playwright/test": "^1.38.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@storybook/addon-actions": "^7.5.2",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/react-webpack5": "^7.5.2",
"@testing-library/react": "^14.0.0",
"@types/btoa": "^1.2.3",
"@types/chrome": "^0.0.210",
"@types/jest": "^29.2.4",
"@types/node": "^20.7.1",
"@types/react": "^18.0.26",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-loader": "^8.2.5",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.3.1",
"dotenv-run-script": "^0.4.1",
"eslint": "^8.29.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"lit-html": "^2.5.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^4.3.0",
"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",
"storybook": "^7.5.2",
"ts-jest": "29.0.5",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"uuid": "^9.0.1",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@swc/helpers": "^0.3.13",
"@whereby/jslib-media": "whereby/jslib-media.git#1.4.1",
"axios": "^1.2.3",
"btoa": "^1.2.1",
"events": "^3.3.0",
"heresy": "^1.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"resolutions": {
"string-width": "^4",
"jackspeak": "2.1.1",
"wrap-ansi": "7.0.0"
}
}