-
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.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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": "work-hours-tracker",
"version": "0.1.0",
"type": "module",
"author": "Danko Lučić",
"license": "GPL-3.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5173",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json && npm run code:format && npm run code:lint",
"test": "vitest",
"test:functional": "playwright test",
"test:all": "vitest && playwright test",
"coverage": "vitest run --coverage",
"code:lint": "eslint",
"code:format": "prettier . --check"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.55.0",
"@sveltejs/vite-plugin-svelte": "^6.1.0",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^24.2.0",
"@vitest/browser": "^3.2.4",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.37.3",
"svelte-check": "^4.3.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.6",
"vitest": "^3.2.4"
},
"dependencies": {
"date-fns": "^4.1.0",
"idb": "^8.0.3",
"uuid": "^11.1.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}