-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) Β· 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) Β· 1.58 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
{
"name": "iris",
"version": "0.0.0",
"description": "Iris, the care management system by the Ojos Project.",
"homepage": "https://ojosproject.org/iris/",
"bugs": "https://github.com/ojosproject/iris/issues/",
"license": "GPL-3.0-only",
"author": {
"name": "Ojos Project",
"url": "https://ojosproject.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/ojosproject/iris/"
},
"private": true,
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"tauri": "tauri",
"clear": "node scripts/clear.js",
"reset": "node scripts/reset.js",
"prettier": "prettier --write \"**/*.{js,ts,tsx,json}\"",
"nextDev": "next dev --turbopack",
"nextBuild": "next build"
},
"dependencies": {
"@tauri-apps/api": "2.8.0",
"@tauri-apps/plugin-autostart": "2.5.0",
"@tauri-apps/plugin-dialog": "2.4.0",
"@tauri-apps/plugin-fs": "2.4.2",
"@tauri-apps/plugin-opener": "2.5.0",
"@tauri-apps/plugin-os": "2.3.1",
"@tauri-apps/plugin-process": "2.3.0",
"@tauri-apps/plugin-sql": "2.3.0",
"@tauri-apps/plugin-updater": "2.9.0",
"chart.js": "^4.4.6",
"chartjs-plugin-datalabels": "^2.2.0",
"moment": "^2.30.1",
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-qr-code": "^2.0.15",
"react-toggle": "^4.1.3"
},
"devDependencies": {
"@tauri-apps/cli": "^2.8.4",
"@types/node": "^22.15.21",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-toggle": "^4.0.5",
"prettier": "^3.5.3",
"typescript": "^5.9.3"
}
}