-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
{
"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.142.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": "pnpm run \"/^lint:.*/\"",
"lint:js": "eslint .",
"lint:css": "stylelint --aei '**/*.css'",
"test": "playwright test"
},
"devDependencies": {
"@eslint/js": "9.8.0",
"@playwright/test": "^1.36.2",
"@types/eslint": "^9.0.0",
"@types/node": "^20.0.0",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "^15.2.0",
"lefthook": "^1.6.8",
"mockdate": "^3.0.5",
"netlify-cli": "17.33.6",
"prettier": "3.3.3",
"prettier-plugin-ejs": "^1.0.3",
"stylelint": "16.8.2",
"stylelint-config-property-sort-order-smacss": "10.0.0",
"stylelint-config-standard": "36.0.1",
"stylelint-prettier": "5.0.2",
"stylelint-use-logical": "^2.1.0",
"vite": "5.3.6",
"vite-plugin-pwa": "0.20.5",
"workbox-window": "^7.0.0"
}
}