-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "share-timer",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --check vite.config.ts tsconfig.json src && eslint vite.config.ts src && svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write vite.config.ts src",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.2.9",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.6",
"@types/eslint": "^9.6.1",
"@types/node": "^25.2.0",
"autoprefixer": "^10.4.22",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"flowbite-svelte": "^1.28.1",
"flowbite-svelte-icons": "^3.1.0",
"jsdom": "^28.0.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"svelte": "^5.44.1",
"svelte-check": "^4.3.4",
"tailwindcss": "^4.1.17",
"tslib": "^2.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.14"
},
"dependencies": {
"globals": "^17.3.0"
}
}