-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 914 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 914 Bytes
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
{
"name": "gistapp",
"type": "module",
"version": "1.3.1",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "astro check",
"lint": "prettier --check . && astro check",
"worker:dev": "cd worker && npx wrangler dev",
"worker:deploy": "cd worker && npx wrangler deploy",
"worker:test": "vitest run worker/"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.1",
"astro": "^6.0.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"@cloudflare/workers-types": "^4.20260316.1",
"vitest": "^4.1.0",
"wrangler": "^4.74.0"
}
}