-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "tools.erian.dev",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"astro": "astro",
"dev": "astro dev",
"preview": "astro preview",
"build": "astro build && pnpm -r build",
"check": "astro check --tsconfig tsconfig.json",
"format": "prettier --write . && pnpm -r format",
"all:run": "pnpm -r --stream --workspace-concurrency 3",
"lint": "prettier --check . && eslint . && pnpm -r lint",
"clean": "rm -rf .astro && rm -rf dist && rm -rf node_modules && pnpm -r clean"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"dependencies": {
"astro": "6.0.7"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/svelte": "8.0.3",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-svelte": "3.5.1",
"prettier-plugin-tailwindcss": "0.7.2",
"shared": "workspace:*",
"svelte": "5.54.0",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"vite": "8.0.1"
}
}