generated from microsoft/FluidExamples
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.95 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
93
94
{
"name": "planner",
"version": "0.0.1",
"private": "true",
"description": "",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run format && npm run webpack",
"ci:test": "start-server-and-test start:server 7070 ci:test:jest",
"ci:test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --ci --reporters=default --reporters=jest-junit",
"compile": "tsc -b",
"dev": "cross-env webpack-dev-server",
"dev:local": "cross-env FLUID_CLIENT='local' webpack-dev-server",
"dev:azure": "cross-env FLUID_CLIENT='azure' webpack-dev-server",
"dev:spe": "cross-env FLUID_CLIENT='spe' webpack-dev-server",
"format": "prettier src --write",
"lint": "eslint src",
"webpack": "cross-env webpack",
"start": "npm run dev",
"start:server": "npx @fluidframework/azure-local-service"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@azure/identity": "^4.0.0",
"@azure/msal-browser": "^3.13.0",
"@azure/openai": "^2.0.0-beta.2",
"@fluentui/react-components": "^9.48.0",
"@fluentui/react-icons": "^2.0.221",
"@fluidframework/azure-client": "0.0.0-295396-test",
"@fluidframework/odsp-client": "0.0.0-295396-test",
"@fluidframework/telemetry-utils": "0.0.0-295396-test",
"@fluidframework/test-runtime-utils": "0.0.0-295396-test",
"@headlessui/react": "^1.7.18",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"ajv": "^8.12.0",
"axios": "^1.6.2",
"dotenv": "^16.0.2",
"fluid-framework": "0.0.0-295396-test",
"hashids": "^2.2.10",
"jsrsasign": "^11.1.0",
"jwt-decode": "^4.0.0",
"openai": "^4.61.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-transition-state": "^2.1.0",
"typechat": "^0.1.0",
"unique-names-generator": "^4.7.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@fluidframework/azure-local-service": "0.0.0-295396-test",
"@fluidframework/build-common": "^2.0.0",
"@fluidframework/devtools": "0.0.0-295396-test",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/debug": "^4.1.7",
"@types/jsrsasign": "^10.5.13",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5",
"dotenv-webpack": "^7.1.1",
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^4.5.2",
"jest": "^29.2.2",
"jest-junit": "^16.0.0",
"jest-puppeteer": "^9.0.0",
"mini-css-extract-plugin": "^1",
"prettier": "^2.7.1",
"puppeteer": "^22.13.0",
"start-server-and-test": "^2.0.0",
"style-loader": "^2",
"tailwindcss": "^3.3.2",
"ts-loader": "^8.0.0",
"typescript": "~5.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}