-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathpackage.json
92 lines (92 loc) · 3.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "calling",
"version": "0.0.1",
"private": true,
"description": "This is a sample application to show how the UI Library can be used to build a calling 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": "npm run clean && concurrently --kill-others-on-fail \"tsc\" \"webpack --mode=production --env production\"",
"clean": "rimraf dist",
"package": "copyfiles -E -u 3 \"../Server/dist/**/*\" dist",
"start": "concurrently \"cd ../Server && npm run start:dev\" \"npm run start:app\"",
"start:app": "webpack-cli serve --mode=development --env development",
"start:prod": "node dist/server.js",
"test": "",
"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 **/*.{ts,tsx}",
"lint:fix": "eslint **/*.{ts,tsx} --fix",
"lint:quiet": "eslint **/*.{ts,tsx} --quiet"
},
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^1.1.0",
"@azure/communication-calling": "^1.32.1",
"@azure/communication-calling-effects": "^1.1.2",
"@azure/communication-common": "^2.3.1",
"@azure/communication-identity": "^1.3.0",
"@azure/communication-react": "1.23.0",
"@azure/logger": "^1.0.4",
"@babel/preset-react": "^7.12.7",
"@fluentui/react": "^8.121.11",
"@fluentui/react-hooks": "^8.8.16",
"@fluentui/react-icons": "^2.0.266",
"follow-redirects": "1.15.6",
"merge": "^2.1.1",
"mobile-detect": "^1.4.5",
"nanoid": "3.3.8",
"node-fetch": "2.6.7",
"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.16.0",
"@babel/preset-env": "7.13.10",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "~29.5.2",
"@types/node": "^16.11.7",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"ajv": "^6.9.1",
"babel-eslint": "^10.0.0",
"babel-jest": "^29.5.0",
"babel-loader": "8.1.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"cross-env": "~7.0.3",
"css-loader": "~7.1.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.1.2",
"html-webpack-plugin": "~5.3.1",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-junit": "~13.0.0",
"prettier": "2.3.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "18.2.0",
"rimraf": "^2.6.2",
"source-map-explorer": "^2.5.0",
"style-loader": "~2.0.0",
"ts-loader": "^8.0.12",
"typescript": "^4.3.5",
"url-loader": "~4.1.1",
"webpack": ">=5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.8.1"
}
}