forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.23 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
{
"name": "microsoft-teams-app-sample",
"version": "0.1.3",
"description": "Microsoft Teams application sample.",
"homepage": ".",
"author": {
"name": "Alexander Katrukhin",
"email": "[email protected]",
"url": "https://github.com/akatrukhin"
},
"maintainers": [],
"contributors": [],
"license": "MIT",
"keywords": [
"Microsoft Teams",
"Microsoft Teams Platform",
"Platform",
"Teams App",
"Application",
"React",
"Fluent UI",
"yeoman-generator",
"Microsoft Teams",
"microsoft-teams",
"Office 365",
"office-365",
"Microsoft 365",
"microsoft-365",
"teams toolkit"
],
"dependencies": {
"@fluentui/react": "^8.112.9",
"@fluentui/react-components": "^9.42.0",
"@fluentui/react-northstar": "^0.51.3",
"@fluentui/react-search-preview": "^0.1.34",
"@fluentui/react-teams": "^0.1.0-alpha.10",
"@microsoft/teams-js": "^2.0.0",
"@uifabric/example-data": "^7.1.5",
"faker": "^5.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-router-dom": "^5.2.0",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.6.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@types/react": "^17.0.71",
"@types/react-dom": "^17.0.25",
"@types/react-router-dom": "^5.1.6",
"axios": "^0.21.0",
"env-cmd": "^10.1.0",
"gulp": "^4.0.2",
"gulp-token-replace": "^1.1.5",
"gulp-zip": "^5.0.2",
"ngrok": "^3.3.0",
"plugin-error": "^1.0.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.3",
"yargs": "^16.2.0",
"z-schema": "^5.0.0"
},
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run start",
"start": "set PORT=53000 && react-scripts start",
"serve": "react-scripts start & gulp start-ngrok",
"build": "react-scripts build",
"package": "gulp manifest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}