-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "scripty",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "npm run prettier && npm run eslint && astro dev",
"build": "astro build",
"preview": "astro preview",
"eslint": "eslint --ext .ts,.tsx,.astro src",
"prettier": "prettier --write . --plugin=prettier-plugin-astro --plugin=prettier-plugin-tailwindcss",
"astro": "astro"
},
"dependencies": {
"@astrojs/solid-js": "^5.1.0",
"@astrojs/starlight": "^0.34.3",
"@astrojs/starlight-tailwind": "^4.0.1",
"@tailwindcss/vite": "^4.1.7",
"astro": "^5.6.1",
"geotiff": "^2.1.3",
"sharp": "^0.32.5",
"solid-js": "^1.9.7",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11"
}
}