-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.88 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.88 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@example/minimal",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"dev:dev": "SANITY_DATASET=development astro dev",
"dev:offline": "OFFLINE=true astro dev",
"pregen": "run-p generate:*",
"generate:search": "tsx ./lib/search.ts",
"generate:archive": "tsx ./lib/archive.ts",
"astro:dev": "astro dev",
"astro:build": "astro build",
"start": "run-s astro:dev",
"build": "run-s astro:build",
"preview": "astro preview",
"astro": "astro",
"prepare": "cd ../ && husky install ./site/.husky",
"pretest": "run-s pregen",
"test": "run-s lint build",
"lint": "run-p *:lint",
"lint:staged": "lint-staged",
"fix": "run-p *:fix",
"js:lint": "eslint .",
"js:fix": "eslint --fix .",
"prettier:lint": "prettier --plugin-search-dir=. -c .",
"prettier:fix": "prettier --plugin-search-dir=. --write .",
"css:lint": "stylelint \"**/*.{css,scss,svelte,astro}\" ",
"css:fix": "stylelint --fix \"**/*.{css,scss,svelte,astro}\" ",
"firebase": "firebase",
"firebase:emulate": "firebase emulators:start",
"firebase:deploy": "firebase hosting:channel:deploy",
"firebase:deploy:preview": "firebase hosting:channel:deploy next --expires 30d"
},
"dependencies": {
"@astrojs/node": "^8.2.5",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/svelte": "^5.4.0",
"@sanity/client": "^6.18.0",
"astro": "^4.8.0",
"astro-portabletext": "^0.10.0",
"bcrypt": "^5.1.1",
"canvas-confetti": "^1.9.3",
"css-paint-polyfill": "^3.4.0",
"dotenv": "^16.4.5",
"firebase-functions": "^5.0.1",
"i18n-iso-countries": "^7.11.1",
"iso-639-1": "^3.1.2",
"lottie-web": "^5.12.2",
"nanoid": "^5.0.7",
"octokit": "^4.0.2",
"pagefind": "^1.1.0",
"posthtml": "^0.16.6",
"posthtml-match-helper": "^2.0.0",
"reading-time": "^1.5.0",
"requestidlecallback": "^0.3.0",
"shiki": "^1.10.0",
"slugify": "^1.6.6",
"svelte": "^4.2.16",
"uslug": "^1.0.4",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-recipes": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-window": "^7.1.0"
},
"devDependencies": {
"@rollup/plugin-virtual": "^3.0.2",
"@rollup/plugin-yaml": "^4.1.2",
"@sanity/types": "^3.41.1",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vite-pwa/astro": "^0.4.0",
"breakpoint-sass": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-astro": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svelte": "^2.38.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lunr": "^2.3.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-html": "^1.7.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-svelte": "^3.2.3",
"sass": "^1.77.0",
"sass-toolkit": "^2.10.2",
"stylelint": "^16.5.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"tsx": "^4.9.3",
"vite": "^5.4.21",
"vite-plugin-virtual": "^0.3.0",
"yaml": "^2.4.2"
},
"lint-staged": {
"**/*.{svelte,astro}": "stylelint -c .stylelintrc.json",
"**/*.{js,mjs,cjs,ts,astro,svelte}": "eslint -c .eslintrc.yml",
"**/*.*": "prettier --plugin-search-dir=. -c"
},
"engines": {
"node": "20",
"pnpm": "8"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.6.0"
}
}