-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.42 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
{
"name": "@internal/sample-static-html-composites",
"version": "1.0.0",
"description": "Basic bundle for communication react composites and usage on a static HTML page.",
"private": true,
"scripts": {
"build": "rushx clean && rushx _by-flavor \"webpack --mode=production\"",
"clean": "rimraf dist",
"start": "concurrently \"cd ../Server && rushx start:dev\" \"rushx start:app\"",
"start:app": "rushx _by-flavor \"webpack serve --config webpack.config.dev.js\"",
"test": "echo skip",
"test:ci-coverage": "echo skip",
"update:snapshot": "playwright test tests --update-snapshots",
"lint": "echo skip",
"lint:fix": "echo skip",
"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:check": "",
"_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"
},
"license": "MIT",
"dependencies": {
"@azure/communication-react": "1.24.0-beta.0",
"@azure/communication-common": "^2.3.1",
"@azure/communication-calling": "1.33.1-beta.1 || ^1.32.1",
"@azure/communication-chat": "1.6.0-beta.3 || ^1.5.4",
"@fluentui/react": "^8.121.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@azure/communication-identity": "^1.3.0",
"@babel/core": "^7.25.2",
"@playwright/test": "~1.49.1",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/node": "^22.10.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"babel-loader": "8.1.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"html-webpack-plugin": "^5.3.1",
"http-server": "14.1.1",
"if-env": "^1.0.4",
"rimraf": "^2.6.2",
"typescript": "5.4.5",
"webpack": "5.95.0",
"webpack-cli": "^5.1.4",
"webpack-bundle-analyzer": "^4.5.0",
"cpy-cli": "^5.0.0",
"@babel/cli": "^7.24.8"
}
}