-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.28 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
{
"name": "@microsoft/04.live-share-react-sample-ts",
"version": "0.4.0",
"private": true,
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@fluentui/react-components": "^9.28.1",
"@fluentui/react-icons": "^2.0.202",
"@fluentui/react-theme": "^9.1.5",
"@fluidframework/azure-client": "^1.1.1",
"@microsoft/live-share": "1.0.1",
"@microsoft/live-share-media": "1.0.1",
"@microsoft/live-share-canvas": "1.0.1",
"@microsoft/live-share-react": "1.0.1-preview.1",
"@microsoft/teams-js": "^2.11.0",
"fluid-framework": "^1.3.6",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.4.2",
"react-router-dom": "^6.4.2",
"use-resize-observer": "^9.1.0",
"uuid": "^9.0.0",
"web-vitals": "^3.1.1"
},
"devDependencies": {
"@fluidframework/test-client-utils": "^1.3.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react": "^3.0.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"vite": "^4.0.4"
},
"scripts": {
"build": "vite build",
"clean": "npx shx rm -rf dist",
"preview": "vite preview",
"start": "start-server-and-test start:server 7070 start:client",
"start-https": "start-server-and-test start:server 7070 start:https",
"start:client": "vite",
"start:https": "vite --config vite.https-config.ts",
"start:server": "npx tinylicious@latest",
"postinstall":"node ../../../ensure-packages-built.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}