-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 5.15 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 5.15 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "tauri-start-solid",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenv -- tauri dev",
"build": "dotenv -- tauri build",
"dev:ui": "NODE_ENV=development vite",
"build:mac:x64": "dotenv -v CI=true -- tauri build --target x86_64-apple-darwin",
"build:mac:arm": "dotenv -v CI=true -- tauri build --target aarch64-apple-darwin",
"build:mac:universal": "dotenv -v CI=true -- tauri build --target universal-apple-darwin",
"build:win:x64": "dotenv -v CI=true -- tauri build --target x86_64-pc-windows-msvc",
"build:win:arm": "dotenv -v CI=true -- tauri build --target aarch64-pc-windows-msvc",
"build:debug": "dotenv -- tauri build --debug",
"build:ci": "dotenv -v CI=true -- tauri build",
"build:ui": "vite build",
"build:dist": "dotenv -- sh ./scripts/build-dist.sh",
"preview": "pnpm dlx serve dist -l 3000 -s -n -C",
"storybook": "storybook dev -p 6006 --no-open",
"storybook:build": "storybook build -o .output/storybook",
"storybook:start": "pnpm dlx serve .output/storybook -l 6006 -n -C",
"postinstall": "pnpm approve-builds && lefthook install || true",
"pre-commit": "lefthook run pre-commit --force",
"generate:config": "dotenv -- sh ./scripts/prepare.sh",
"generate:icons": "tauri icon ./assets/images/app-icon.png",
"compose:up": "docker-compose -f compose.yaml up --detach --remove-orphans",
"compose:down": "docker-compose -f compose.yaml down --remove-orphans",
"compose:cleanup": "docker-compose -f compose.yaml down --remove-orphans --volumes",
"compose:restart": "pnpm --silent run compose:down && pnpm --silent run compose:up",
"cleanup:deps": "pnpm dlx del-cli pnpm-lock.yaml node_modules src-tauri/Cargo.lock",
"cleanup:rs": "cargo clean --manifest-path src-tauri/Cargo.toml",
"cleanup:js": "pnpm dlx del-cli .{output,temp} dist tests-results",
"cleanup": "pnpm --stream --parallel \"/^cleanup:.*/\"",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"release:major": "rtk release -r major",
"release:minor": "rtk release -r minor",
"release:patch": "rtk release -r patch",
"format:rs": "cargo fmt --manifest-path src-tauri/Cargo.toml",
"test:rs": "cargo nextest --manifest-path src-tauri/Cargo.toml run",
"test:report": "pnpm dlx serve tests-results -l 8000 -s -n -C",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:js": "vitest --run",
"typecheck": "tsc -b --noEmit",
"check": "oxfmt --check && oxlint",
"format": "oxfmt --write .",
"lint": "oxlint --fix",
"tauri": "dotenv -- tauri"
},
"dependencies": {
"@kobalte/core": "^0.13.11",
"@nanostores/solid": "^1.1.1",
"@tanstack/solid-router": "^1.168.1",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-positioner": "^2.3.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.0",
"@tauri-apps/plugin-window-state": "^2.4.1",
"clsx": "^2.1.1",
"consola": "^3.4.2",
"nanostores": "^1.2.0",
"solid-js": "^1.9.11",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@storybook/addon-a11y": "^10.3.1",
"@storybook/addon-docs": "^10.3.1",
"@storybook/addon-links": "^10.3.1",
"@storybook/blocks": "^8.6.14",
"@storybook/core-events": "^8.6.14",
"@storybook/manager-api": "^8.6.14",
"@storybook/test": "^8.6.15",
"@storybook/theming": "^8.6.14",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/router-plugin": "^1.167.1",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"dotenv-cli": "^11.0.0",
"jsdom": "^29.0.1",
"lefthook": "^2.1.4",
"npm-check-updates": "^19.6.5",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"pathe": "^2.0.3",
"rtk": "^4.2.0",
"solid-devtools": "^0.34.5",
"storybook": "^10.3.1",
"storybook-solidjs": "^1.0.0-beta.7",
"storybook-solidjs-vite": "^10.0.9",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.1-rc",
"vite": "^8.0.1",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=24.12.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
}
}