-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 930 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 930 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
{
"name": "world-clock-website",
"version": "1.0.0",
"description": "A web application that displays analog clocks for multiple world cities with real-time timezone synchronization",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm test && npm run test:e2e"
},
"keywords": [
"world-clock",
"timezone",
"analog-clock",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"@vitest/ui": "^1.0.0",
"jsdom": "^27.4.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
}
}