-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.17 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
{
"name": "agentic-predictive-maintenance",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack --port 8080",
"build": "next build",
"start": "next start --port 8080",
"lint": "next lint",
"embed": "node scripts/embed_collections.mjs",
"generate_calendar": "node scripts/generate_production_calendar.mjs",
"seed": "node scripts/seed.mjs",
"tpn": "npx --no-install license-checker --production --json > third-party-licenses.json && node scripts/generate_third_party_notices.mjs"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.828.0",
"@aws-sdk/credential-provider-node": "^3.835.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/react": "^6.1.17",
"@langchain/aws": "^0.1.10",
"@langchain/core": "^0.3.57",
"@langchain/langgraph": "^0.3.1",
"@langchain/langgraph-checkpoint-mongodb": "^0.0.6",
"@langchain/mongodb": "^0.1.0",
"@leafygreen-ui/avatar": "^2.0.10",
"@leafygreen-ui/button": "^23.1.6",
"@leafygreen-ui/card": "^12.0.9",
"@leafygreen-ui/code": "^18.1.0",
"@leafygreen-ui/expandable-card": "^4.0.13",
"@leafygreen-ui/icon": "^13.4.0",
"@leafygreen-ui/icon-button": "^16.0.12",
"@leafygreen-ui/leafygreen-provider": "^4.0.7",
"@leafygreen-ui/loading-indicator": "^3.0.12",
"@leafygreen-ui/modal": "^17.1.7",
"@leafygreen-ui/segmented-control": "^10.0.13",
"@leafygreen-ui/select": "^14.1.8",
"@leafygreen-ui/tabs": "^14.2.5",
"@leafygreen-ui/text-area": "^10.0.12",
"@leafygreen-ui/text-input": "^14.0.13",
"@leafygreen-ui/typography": "^20.1.9",
"@mui/material": "^7.1.1",
"bson": "^6.10.4",
"dotenv": "^16.5.0",
"execa": "^9.6.0",
"i": "^0.3.7",
"mongodb": "^6.17.0",
"next": "^15.5.3",
"npm": "^11.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"license-checker": "^25.0.1",
"tailwindcss": "^4"
}
}