-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 816 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
{
"name": "@arcacomputer/web",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22 <25"
},
"scripts": {
"dev": "astro dev",
"check": "astro check && npm run test && npm run build && node scripts/check-build.mjs && npm run check:provider",
"check:provider": "wrangler deploy --dry-run --outdir .wrangler/dry-run",
"qa": "node scripts/qa.mjs",
"test": "node --test tests/*.test.mjs",
"build": "astro build",
"preview": "wrangler dev --local-protocol https",
"deploy": "wrangler deploy"
},
"dependencies": {
"@astrojs/sitemap": "3.7.3",
"astro": "7.2.2"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"axe-core": "4.13.0",
"playwright": "1.62.1",
"typescript": "6.0.3",
"wrangler": "4.123.0"
}
}