-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 Bytes
/
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
{
"name": "fuel-calc-pwa",
"license": "MIT",
"version": "2.0.0",
"type": "module",
"packageManager": "pnpm@8.15.4",
"dependencies": {
"joi": "17.12.3",
"preact": "10.20.2"
},
"devDependencies": {
"@preact/preset-vite": "2.8.3",
"@types/node": "^20.12.3",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-preact": "1.3.0",
"postcss": "8.4.47",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.14",
"typescript": "5.4.5",
"vite": "5.2.14",
"vite-plugin-pwa": "0.19.7",
"workbox-window": "^7.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint 'src/**/*.{js,jsx,ts,tsx,html}' && tsc --noEmit",
"format": "prettier --write . && eslint 'src/**/*.{js,jsx,ts,tsx,html}' --fix"
}
}