-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"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": "^10.0.1",
"@playwright/test": "^1.61.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^26.1.0",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"prettier-plugin-svelte": "^4.1.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"dependencies": {
"date-fns": "^4.4.0",
"idb": "^8.0.3",
"uuid": "^14.0.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}