-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 891 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
{
"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",
"lint": "eslint --fix {src,apps,packages}/**/*.{astro,ts}",
"format": "prettier --write {src,apps,packages}/**/*.{astro,ts}",
"build:prod": "pnpm build && pnpm all:run build",
"all:run": "pnpm -r --stream --workspace-concurrency 3"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {
"astro": "5.0.3"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/tailwind": "5.1.3",
"eslint-config-custom": "workspace:*",
"shared": "workspace:*",
"sharp": "0.33.5",
"typescript": "5.7.2",
"vite": "6.0.3"
}
}