-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.69 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
{
"name": "lifeos-web",
"private": true,
"version": "1.1.0",
"type": "module",
"packageManager": "npm@11.17.0",
"engines": {
"node": "^22.12.0 || ^24.0.0"
},
"scripts": {
"api:check": "node scripts/check-api-types.mjs",
"api:fetch": "node scripts/fetch-schema.mjs",
"api:generate": "node scripts/generate-api-types.mjs",
"api:refresh": "npm run api:fetch && npm run api:generate",
"dev": "vite",
"test:e2e": "playwright test",
"build": "tsc -b && npm run typecheck:test && vite build",
"build-prod": "tsc -b && npm run typecheck:test && NODE_OPTIONS=--max-old-space-size=1536 vite build",
"i18n:check": "node scripts/check-i18n.mjs",
"lint": "eslint . --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fullcalendar/core": "^6.1.21",
"@fullcalendar/interaction": "^6.1.21",
"@fullcalendar/luxon3": "^6.1.21",
"@fullcalendar/react": "^6.1.21",
"@fullcalendar/timegrid": "^6.1.21",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.102.3",
"@tanstack/react-router": "^1.170.17",
"hast-util-sanitize": "^5.0.2",
"i18next": "^25.10.10",
"i18next-browser-languagedetector": "^8.2.1",
"luxon": "^3.7.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^15.7.3",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "1.62.1",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/router-vite-plugin": "^1.167.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/luxon": "^3.7.2",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.1.0",
"@vitest/coverage-v8": "^4.1.10",
"daisyui": "^5.7.16",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^16.3.0",
"jsdom": "^27.4.0",
"openapi-typescript": "^7.13.0",
"tailwindcss": "^4.3.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.0",
"vitest": "^4.1.8"
},
"overrides": {
"ajv": "^6.14.0",
"browserslist": "^4.28.9",
"js-yaml": "4.3.1",
"minimatch": "^10.2.6"
}
}