-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pwa",
"version": "0.0.1",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev"
},
"lint-staged": {
"./**/*.{js,mjs,cjs}": [
"eslint --cache --fix --ext .js,.mjs,.cjs ./",
"prettier --cache --write \"./**/*.{js,mjs,cjs}\""
],
"./**/*.ts": [
"eslint --cache --fix --ext .ts ./",
"prettier --cache --write \"./**/*.ts\""
],
"./src/**/*.astro": [
"eslint --cache --fix --ext .astro ./src/",
"prettier --cache --write \"./src/**/*.astro\""
],
"./src/**/*.css": "prettier --cache --write \"./src/**/*.css\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.yml": "prettier --cache --write \"./**/*.yml\""
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/tailwind": "5.1.2",
"@astrojs/ts-plugin": "1.10.4",
"@playform/compress": "0.1.6",
"@playform/inline": "0.1.0",
"@vite-pwa/astro": "0.4.3",
"astro": "4.16.14",
"astro-compressor": "0.4.1",
"astro-iconify": "1.2.0",
"astro-seo-schema": "4.0.3",
"astro-sitemap": "1.0.0",
"astro-tunnel": "0.1.6",
"schema-dts": "1.1.2",
"tailwindcss": "3.4.15",
"typescript": "5.6.3",
"vite-plugin-pwa": "0.21.0",
"workbox-window": "7.3.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.0",
"astro-eslint-parser": "1.1.0",
"eslint": "8.57.0",
"eslint-config-love": "47.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.9"
}
}