-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "brainstorm",
"version": "0.0.1",
"private": "true",
"description": "",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run format && npm run webpack",
"ci:test": "npm run test",
"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",
"start": "npm run dev",
"start:server": "azure-local-service",
"pretest": "playwright install --with-deps",
"test": "playwright test",
"webpack": "cross-env webpack"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@azure/msal-browser": "^5.9.0",
"@fluentui/react-icons": "^2.0.319",
"@fluidframework/azure-client": "^2.111.0",
"@fluidframework/odsp-client": "^2.111.0",
"@fluidframework/telemetry-utils": "^2.111.0",
"@fluidframework/test-runtime-utils": "^2.111.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"axios": "^1.18.0",
"fluid-framework": "^2.111.0",
"hashids": "^2.2.10",
"jsrsasign": "^11.1.1",
"react": "^19.2.7",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.7",
"react-transition-state": "^2.4.0",
"unique-names-generator": "^4.7.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@fluidframework/azure-local-service": "^2.111.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/devtools": "^2.111.0",
"@microsoft/microsoft-graph-types": "^2.43.1",
"@playwright/test": "^1.57.0",
"@tailwindcss/cli": "^4.2.0",
"@types/debug": "^4.1.13",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.2",
"playwright": "^1.58.2",
"prettier": "^3.9.4",
"style-loader": "^4.0.0",
"tailwindcss": "^4.2.0",
"ts-loader": "^9.5.4",
"typescript": "~6.0",
"webpack": "^5.108.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.5"
},
"overrides": {
"@fluentui/react-icons": {
"react": "^19.0.0"
}
}
}