This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
{
"name": "@dolbyio/comms-uikit-react",
"version": "1.3.1",
"description": "Dolby.io Communications UIKit for React",
"license": "MIT",
"main": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage=true",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"license-checker": "license-checker --json --out third-party-licenses.json --relativeLicensePath",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/DolbyIO/comms-uikit-react.git"
},
"keywords": [
"web",
"ui kit",
"ux kit",
"ui library"
],
"peerDependencies": {
"@voxeet/voxeet-web-sdk": "^3.10.0",
"react": "^18.0.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@react-hook/resize-observer": "^1.2.6",
"classnames": "^2.3.1",
"color": "4.2.3",
"lodash.merge": "^4.6.2",
"lottie-colorify": "0.8.0",
"lottie-web": "^5.9.4",
"postcss": "^8.4.21"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@svgr/rollup": "^6.2.1",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/color": "3.0.3",
"@types/lodash.merge": "^4.6.7",
"@types/react": "^18.0.6",
"@voxeet/voxeet-web-sdk": "^3.10.0",
"babel-plugin-module-resolver": "^4.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.3.1",
"license-checker": "^25.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.66.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.1.5",
"typescript-plugin-css-modules": "^3.4.0"
},
"eslintConfig": {
"env": {
"jest": true
},
"rules": {
"react/react-in-jsx-scope": "off"
}
}
}