-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"name": "sol-safekey-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 3840",
"predev:stack": "node scripts/ensure-out.cjs && node scripts/free-api-port.cjs",
"dev:stack": "concurrently -k -n next,api \"next dev -H 127.0.0.1 -p 3840\" \"cargo run --release\"",
"backend": "cargo run --release",
"prebuild": "node scripts/assert-no-next-dev.cjs && node scripts/check-sensitive-inputs.cjs",
"build": "next build",
"start": "next start",
"lint": "node scripts/check-sensitive-inputs.cjs && eslint",
"tauri": "tauri",
"predesktop:dev": "node scripts/refresh-desktop-icons.cjs",
"desktop:dev": "node scripts/desktop-dev.cjs",
"desktop:build": "tauri build"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@tauri-apps/api": "^2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^15.5.19",
"next-intl": "^4.13.0",
"next-themes": "^0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"shadcn": "^4.0.8",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.27",
"concurrently": "^10.0.3",
"eslint": "^9",
"eslint-config-next": "^15.5.19",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"overrides": {
"postcss": "$postcss",
"picomatch": "4.0.4",
"brace-expansion": "1.1.13"
}
}