-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 977 Bytes
/
package.json
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": "red-arc",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && tsc --noEmit && astro build",
"check:exports": "npx find-unused-exports",
"check:packages": "npx npm-check -u",
"dev": "astro dev",
"fmt": "dprint fmt",
"lint": "deno lint",
"preview": "astro preview",
"start": "astro dev",
"test": "pnpm test:int && p test:e2e",
"test:cov": "vitest run --coverage",
"test:e2e": "pnpm build && pnpm dlx playwright test && pnpm dlx playwright show-report",
"test:int": "vitest"
},
"devDependencies": {
"@astrojs/mdx": "^0.13.0",
"@astrojs/sitemap": "^1.0.0",
"@babel/core": "^7.20.5",
"@js-temporal/polyfill": "^0.4.3",
"@playwright/test": "^1.29.0",
"@vitest/coverage-c8": "^0.26.0",
"astro": "^1.7.2",
"astro-compress": "^1.1.24",
"rollup": "^3.7.5",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"vite-plugin-compress": "^2.1.1",
"vitest": "^0.26.1"
}
}