-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.34 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"postinstall": "svelte-kit sync",
"prepare": "husky",
"format": "npm run format:frontend && cargo fmt --all",
"format:frontend": "prettier --write .",
"lint": "npm run lint:frontend && cargo fmt --all --check && cargo clippy --workspace",
"lint:frontend": "prettier --check . && svelte-check --tsconfig ./tsconfig.json && eslint . --max-warnings=0 --exit-on-fatal-error",
"update": "npx npm-check-updates --upgrade && npm install && cargo upgrade --incompatible --exclude open && cargo update",
"fetch": "cd riic-fetch && cargo run --release && npm run format:frontend",
"tauri": "tauri"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.4",
"@sveltejs/kit": "^2.5.26",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tauri-apps/cli": "^1.6.1",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"husky": "^9.1.5",
"prettier": "3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-check": "^4.0.1",
"svelte-preprocess": "^6.0.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vite": "^5.4.3"
},
"dependencies": {
"@tauri-apps/api": "^1.6.0",
"tippy.js": "^6.3.7"
}
}