-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "tauri-sveltekit",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "npm run tauri dev",
"build": "npm run tauri build",
"tauri": "tauri",
"sveltekit:dev": "vite dev",
"sveltekit:build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.21.2",
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^24.8.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^3.9.1",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.40.2",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^1.2.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.0.0",
"vite": "^6.3.5"
},
"type": "module",
"dependencies": {
"@sveltestrap/sveltestrap": "^7.1.0",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"sortablejs": "^1.15.6",
"svelte-i18n": "^4.0.1",
"tablesort": "^5.6.0"
}
}