-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.9 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": "hr-recruiting-app",
"version": "0.0.1",
"private": "true",
"description": "",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run format && npm run compile && npm run webpack",
"ci:test": "npm run test",
"compile": "tsc -b",
"dev": "concurrently \"npm run start:tinylicious > tinylicious.log\" \" npm run dev:tinylicious\"",
"dev:spe": "cross-env FLUID_CLIENT='spe' webpack-dev-server",
"dev:tinylicious": "cross-env FLUID_CLIENT='tinylicious' webpack-dev-server",
"webpack": "cross-env FLUID_CLIENT='tinylicious' webpack",
"format": "prettier src --write",
"lint": "eslint src",
"start": "npm run dev",
"test": "echo 'TODO: add tests'",
"start:tinylicious": "tinylicious"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@azure/identity": "^4.5.0",
"@azure/msal-browser": "^2.39.0",
"@fluentui/react": "^8.121.6",
"@fluentui/react-components": "^9.55.1",
"@fluentui/react-icons": "^2.0.261",
"@fluidframework/ai-collab": "2.10.0-307399",
"@fluidframework/azure-client": "2.10.0-307399",
"@fluidframework/core-interfaces": "2.10.0-307399",
"@fluidframework/odsp-client": "2.10.0-307399",
"@fluidframework/presence": "2.10.0-307399",
"@fluidframework/telemetry-utils": "2.10.0-307399",
"@fluidframework/test-runtime-utils": "2.10.0-307399",
"@fluidframework/tinylicious-client": "2.10.0-307399",
"@fluidframework/tree": "2.10.0-307399",
"@microsoft/microsoft-graph-client": "^3.0.7",
"axios": "^1.7.7",
"fluid-framework": "2.10.0-307399",
"guid-typescript": "^1.0.9",
"hashids": "^2.3.0",
"openai": "^4.67.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"unique-names-generator": "^4.7.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@fluidframework/ai-collab": "2.10.0-307399",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/core-interfaces": "2.10.0-307399",
"@fluidframework/odsp-client": "2.10.0-307399",
"@fluidframework/tinylicious-client": "2.10.0-307399",
"@fluidframework/tree": "2.10.0-307399",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/debug": "^4.1.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"concurrently": "^9.1.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.1",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"tinylicious": "^5.0.0",
"ts-loader": "^9.5.1",
"typescript": "~5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}