-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 KB
/
package.json
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
{
"name": "timezone-converter",
"description": "A simple timezone converter",
"version": "1.0.0",
"author": "Marco Solazzi",
"homepage": "https://github.com/dwightjack/timezone-converter",
"license": "MIT",
"dependencies": {
"@vvo/tzdb": "6.152.0",
"sanitize.css": "13.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.0.0",
"pnpm": "^9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dwightjack/timezone-converter"
},
"scripts": {
"dev": "netlify dev -c \"pnpm exec vite\"",
"build": "pnpm run lint && vite build",
"preview": "netlify dev -d dist",
"lint": "biome check",
"test": "playwright test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.36.2",
"@types/node": "^20.0.0",
"globals": "^15.2.0",
"lefthook": "^1.6.8",
"mockdate": "^3.0.5",
"netlify-cli": "17.38.1",
"prettier": "3.4.2",
"prettier-plugin-ejs": "^1.0.3",
"vite": "6.0.9",
"vite-plugin-pwa": "0.21.1",
"workbox-window": "^7.3.0"
}
}