-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
34 lines (34 loc) · 1.25 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
{
"name": "@microsoft/01.dice-roller",
"version": "1.0.0",
"private": true,
"description": "Sample dice roller app.",
"repository": "https://github.com/microsoft/live-share-sdk",
"license": "Microsoft",
"author": "Microsoft",
"scripts": {
"build": "vite build",
"clean": "npx shx rm -rf dist",
"start:client": "vite",
"start:https": "vite src --config vite.https-config.js",
"start:server": "npx tinylicious@latest",
"start-https": "start-server-and-test start:server 7070 start:https",
"start": "start-server-and-test start:server 7070 start:client",
"doctor": "eslint src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"postinstall":"node ../../../ensure-packages-built.js"
},
"dependencies": {
"@fluidframework/azure-client": "^1.1.1",
"@microsoft/live-share": "1.4.0",
"@microsoft/teams-js": "^2.16.0",
"fluid-framework": "^1.3.6"
},
"devDependencies": {
"@fluidframework/test-client-utils": "^1.3.6",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.7",
"buffer": "^6.0.3",
"start-server-and-test": "^2.0.0",
"vite": "^4.0.4"
}
}