-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 5.35 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 5.35 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
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
{
"name": "@internal/callwithchat",
"version": "0.0.1",
"private": true,
"description": "This is a sample application to show how the UI Library can be used to build a call with chat experience. The client-side application is a React based user interface which uses React Hooks for handling complex state while leveraging Microsoft Fluent UI for how things look.",
"scripts": {
"build": "rushx clean && concurrently --kill-others-on-fail \"rushx _typecheck\" \"rushx webpack\"",
"build:minify": "rushx clean && concurrently --kill-others-on-fail \"rushx _typecheck\" \"rushx webpack:minify\"",
"build:stable": "cross-env FLAVOR=stable rushx build",
"clean": "rimraf dist",
"package": "copyfiles -E -u 3 \"../Server/dist/**/*\" dist",
"start": "concurrently \"cd ../Server && rushx start:dev\" \"rushx start:app\"",
"start:app": "rushx _by-flavor \"webpack-cli serve --mode=development --env development\"",
"start:prod": "node dist/server.js",
"test": "",
"test:ci-coverage": "echo skip",
"test:stable": "echo skip",
"port:sample": "rushx preprocess:stable-flavor && cpy './preprocessed/**' sample-dist/src && cpy './Media/**' sample-dist/Media && cpy './public/**' sample-dist/public",
"preprocess": "cpy './src/**' ./preprocessed && babel ./src --out-dir ../preprocessed --extensions \".ts,.tsx\" --keep-file-extension --config-file ./.babelrc.js --relative",
"preprocess:stable-flavor": "rushx _stable-flavor \"rushx preprocess && rushx lint:fix && rushx prettier\"",
"prettier": "prettier --no-error-on-unmatched-pattern --write --config ../../.prettierrc --ignore-path=../../.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"prettier:check": "prettier --no-error-on-unmatched-pattern --check --config ../../.prettierrc --ignore-path=../../.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint */**/*.{ts,tsx} --fix",
"lint:quiet": "eslint */**/*.{ts,tsx} --quiet",
"webpack": "rushx _by-flavor \"webpack --mode=production --env production\"",
"webpack:minify": "rushx _by-flavor \"webpack --mode=production --env production --env minify\"",
"_current-flavor": "echo You are running under COMMUNICATION_REACT_FLAVOR: && env-cmd -f ../../common/config/env/.env node -p process.env.COMMUNICATION_REACT_FLAVOR",
"_by-flavor": "rushx _current-flavor && env-cmd -f ../../common/config/env/.env --use-shell",
"_stable-flavor": "rushx _current-flavor && env-cmd -f ../../common/config/env/stable.env --use-shell",
"_if-preprocess": "if-env COMMUNICATION_REACT_FLAVOR=stable || if-env COMMUNICATION_REACT_FLAVOR=beta-release",
"_typecheck": "rushx _by-flavor \"npm run _if-preprocess && rushx preprocess && tsc -p tsconfig.preprocess.json || (if-env COMMUNICATION_REACT_FLAVOR=beta && tsc)\""
},
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^1.1.0",
"@azure/communication-identity": "^1.3.0",
"@azure/communication-calling": "1.34.1-beta.2 || ^1.34.1",
"@azure/communication-chat": "1.6.0-beta.3 || ^1.5.4",
"@azure/communication-react": "1.26.0-beta.1",
"@azure/communication-common": "^2.3.1",
"@azure/logger": "^1.0.4",
"@babel/preset-react": "^7.12.7",
"@internal/acs-ui-common": "1.26.0-beta.1",
"@internal/calling-component-bindings": "1.26.0-beta.1",
"@internal/calling-stateful-client": "1.26.0-beta.1",
"@internal/react-components": "1.26.0-beta.1",
"@internal/react-composites": "1.26.0-beta.1",
"@fluentui/react": "^8.122.11",
"@fluentui/react-file-type-icons": "8.12.8",
"@fluentui/react-icons": "^2.0.274",
"merge": "^2.1.1",
"mobile-detect": "^1.4.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^5.1.2",
"reselect": "^4.0.0",
"shake.js": "1.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "7.23.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"ajv": "^8.17.1",
"babel-jest": "^29.5.0",
"babel-loader": "8.1.0",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^8.0.3",
"if-env": "^1.0.4",
"jest": "29.7.0",
"jest-junit": "^16.0.0",
"prettier": "3.3.2",
"pretty-quick": "^4.0.0",
"rimraf": "^2.6.2",
"source-map-explorer": "^2.5.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.12",
"typescript": "5.4.5",
"url-loader": "^4.1.1",
"webpack": "5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.2",
"webpack-bundle-analyzer": "^4.5.0",
"@babel/cli": "^7.24.8"
}
}