-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 904 Bytes
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
{
"name": "time-tracking-system",
"version": "0.1.0",
"type": "module",
"description": "Shop floor time tracking system with operator and admin interfaces",
"main": "src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"lint": "eslint src/ --max-warnings 0"
},
"keywords": [
"time-tracking",
"shop-floor",
"operator",
"timer"
],
"author": "",
"license": "MIT",
"dependencies": {
"sql.js": "^1.8.0"
},
"devDependencies": {
"@eslint/js": "^8.54.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"eslint": "^8.54.0",
"globals": "^13.24.0",
"jsdom": "^27.2.0",
"terser": "^5.44.1",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}