-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.08 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 3.08 KB
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
{
"name": "webex-widgets",
"repository": "git@github.com:webex/widgets.git",
"author": "devsupport@webex.com",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**/*",
"packages/contact-center/*",
"widgets-samples/**/**"
],
"packageManager": "yarn@4.5.1",
"devDependencies": {
"@babel/preset-typescript": "7.25.9",
"@playwright/test": "^1.51.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@webex/cli-tools": "0.0.0-next.2",
"@webex/package-tools": "0.0.0-next.6",
"babel-jest": "^29.7.0",
"crypto-browserify": "^3.12.1",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-canvas-mock": "^2.5.2",
"node-gyp": "^10.2.0",
"nodemailer": "^7.0.3",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"sass": "^1.83.1",
"sass-loader": "^16.0.4",
"semantic-release": "^24.2.0",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"typescript": "^5.6.3",
"vm-browserify": "^1.1.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"resolutions": {
"@momentum-design/components": "0.53.8",
"@momentum-design/icons": "0.17.0"
},
"scripts": {
"clean": "yarn workspaces foreach --all --topological --parallel run clean && rm -rf node_modules",
"clean:dist": "yarn workspaces foreach --all --topological --parallel run clean:dist",
"test:unit": "yarn run test:tooling && yarn run test:cc-widgets",
"test:e2e": "yarn playwright test",
"test:styles": "yarn workspaces foreach --all --exclude webex-widgets run test:styles",
"test:tooling": "jest --coverage",
"test:cc-widgets": "yarn workspaces foreach --all --exclude webex-widgets --exclude samples-cc-wc-app --exclude samples-cc-react-app run test:unit",
"build:dev": "NODE_ENV=development yarn build",
"build:prod": "NODE_ENV=production yarn build:serial",
"build": "NODE_OPTIONS=--max-old-space-size=4096 yarn workspaces foreach --all --parallel --topological --exclude samples-cc-react-app --exclude samples-cc-wc-app --exclude samples-meeting-app run build:src",
"build:serial": "NODE_OPTIONS=--max-old-space-size=4096 yarn workspaces foreach --all --topological --exclude samples-cc-react-app --exclude samples-cc-wc-app --exclude samples-meeting-app run build:src",
"samples:build": "yarn workspaces foreach --all --parallel --include samples-cc-react-app --include samples-cc-wc-app --include samples-meeting-app run build:src && ./copy_to_docs.sh",
"samples:serve": "http-server docs",
"samples:serve-react": "yarn workspace samples-cc-react-app serve",
"samples:serve-wc": "yarn workspace samples-cc-wc-app serve",
"release:widgets": "semantic-release",
"postinstall": "husky install",
"prepare": "husky",
"package-tools": "webex-package-tools"
}
}