forked from oxyzenQ/bmi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.39 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.39 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
{
"name": "a-simple-bmi-calc",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"start": "vite preview --host",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .svelte,.js,.ts",
"lint:fix": "eslint . --ext .svelte,.js,.ts --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest --run",
"clean": "rm -rf .svelte-kit build dist node_modules/.cache",
"type-check": "svelte-check --tsconfig ./tsconfig.json",
"build:analyze": "vite build --mode analyze",
"deploy": "bun run build && bun run preview",
"build:optimized": "NODE_ENV=production vite build --mode production",
"analyze": "vite build --mode analyze",
"verify": "bun run check && bun run lint && bun run test:run && bun run build"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.4",
"@sveltejs/adapter-vercel": "^5.10.3",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/bun": "latest",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"rollup-plugin-visualizer": "^6.0.11",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2",
"vite-plugin-purgecss": "^0.2.13",
"vitest": "^3.2.4"
},
"keywords": [
"bmi",
"calculator",
"sveltekit",
"typescript",
"health",
"performance",
"tauri",
"rust",
"desktop",
"android"
],
"author": "Rezky Nightly",
"license": "GPL-3.0",
"description": "A simple BMI calc - Modern, responsive Body Mass Index calculator built with SvelteKit and TypeScript",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"lucide-svelte": "^0.446.0"
}
}