-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "ntp-client",
"version": "0.1.0",
"type": "module",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,scss,html,yml,yaml}\" && cargo fmt --all --manifest-path src-tauri/Cargo.toml",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,scss,html,yml,yaml}\" && cargo fmt --all --check --manifest-path src-tauri/Cargo.toml",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:sign": "bash scripts/sign-sidecar.sh",
"tauri:release": "tauri build && bash scripts/sign-sidecar.sh"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3"
},
"dependencies": {
"@babylonjs/core": "^9.3.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^26.0.6",
"i18next-resources-to-backend": "^1.2.1",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
}
}