-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "frontendmentor",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"astro": "astro",
"dev": "astro dev",
"preview": "astro preview",
"build": "pnpm check && astro build",
"check": "astro check --tsconfig tsconfig.json",
"clean": "rm -rf node_modules dist && pnpm all:run clean",
"lint": "eslint --fix {apps,packages,src}/**/*.{astro,svelte,ts,js}",
"format": "prettier --write {apps,packages,src}/**/*.{astro,svelte,ts,js,css}",
"reset": "rm -rf node_modules dist .astro pnpm-lock.yaml && pnpm all:run reset",
"all:run": "pnpm -r --stream --workspace-concurrency 3",
"build:prod": "pnpm build && pnpm all:run build"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {
"astro": "6.1.6",
"nanostores": "1.2.0"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/svelte": "8.0.5",
"@eslint/compat": "2.0.5",
"@types/node": "25.6.0",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"eslint": "9.39.4",
"eslint-config-love": "152.0.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-svelte": "3.17.0",
"prettier": "3.8.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "3.5.1",
"prettier-plugin-tailwindcss": "0.7.2",
"shared": "workspace:*",
"sharp": "0.34.5",
"svelte": "5.55.4",
"typescript": "5.9.3",
"typescript-eslint": "8.58.2",
"vite": "7.3.2"
}
}