forked from webex/widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 983 Bytes
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
{
"name": "@webex/cc-ui-logging",
"version": "1.0.0",
"description": "UI metrics tracking for Webex widgets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:src": "webpack --mode=development",
"clean": "rm -rf dist",
"clean:dist": "rm -rf dist",
"test:unit": "jest --coverage",
"test:styles": "echo 'No styles to test'"
},
"dependencies": {
"@webex/cc-store": "workspace:*"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/react-test-renderer": "18",
"@webex/test-fixtures": "workspace:*",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"typescript": "^5.6.3",
"uuid": "^9.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
}
}