-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 847 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 847 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": "astro-hybrid-with-static-routes",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --force",
"build": "astro check && astro build",
"preview": "astro preview",
"start": "node ./dist/server/entry.mjs",
"astro": "astro",
"test:build": "pnpm install && pnpm build",
"test:assert": "TEST_ENV=production playwright test"
},
"dependencies": {
"@astrojs/check": "0.9.2",
"@astrojs/node": "8.3.4",
"@playwright/test": "~1.56.0",
"@sentry/astro": "file:../../packed/sentry-astro-packed.tgz",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@spotlightjs/astro": "2.1.6",
"astro": "6.1.6",
"typescript": "^5.5.4"
},
"devDependencies": {
"@astrojs/internal-helpers": "^0.4.1"
},
"volta": {
"extends": "../../package.json"
}
}