forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "live-coding-sample",
"version": "0.3.1",
"description": "This sample demonstrates live coding using live share sdk.",
"license": "Microsoft",
"author": "Microsoft",
"dependencies": {
"@fluentui/react-card": "^9.0.26",
"@fluentui/react-components": "^9.0.0-rc.10",
"@fluentui/react-northstar": "^0.58.0",
"@microsoft/live-share": "1.0.0-preview.8",
"@microsoft/live-share-media": "1.0.0-preview.8",
"@microsoft/teams-js": "^2.5.0",
"@monaco-editor/react": "^4.3.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.21.4",
"cors": "^2.8.5",
"fluid-framework": "~0.59.0",
"has-cors": "^1.1.0",
"lodash": "^4.17.21",
"msteams-ui-components-react": "^0.8.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^6.2.2",
"react-scripts": "^4.0.0",
"use-resize-observer": "^8.0.0",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@fluidframework/test-client-utils": "~0.59.0",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.5.0",
"start-server-and-test": "^1.11.6"
},
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run start",
"clean": "npx shx rm -rf build",
"start": "set PORT=3978 HTTPS=true && react-scripts --openssl-legacy-provider start",
"start:client": "set PORT=3978 HTTPS=true && react-scripts start",
"start:server": "npx @fluidframework/azure-local-service@latest",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3000"
}