-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@ogdrip/frontend",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev --host",
"dev:frontend": "astro dev --host",
"start": "astro dev --host",
"build": "astro build",
"preview": "astro preview --host",
"lint": "astro check && eslint . --ext .js,.ts,.astro",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .astro",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "node ./scripts/validate-imports.js"
},
"dependencies": {
"@astrojs/svelte": "^7.0.5",
"@sentry/astro": "^9.4.0",
"@sentry/browser": "^9.4.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"astro": "^5.4.2",
"clsx": "^2.1.1",
"esm-env": "^1.2.2",
"p-limit": "^6.2.0",
"svelte": "^5.22.5",
"vite": "^6.2.0"
},
"devDependencies": {
"@astrojs/svelte": "^5.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.7",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-svelte": "^3.0.3",
"jsdom": "^26.0.0",
"svelte": "^5.0.0-next.62",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vitest": "^3.0.7"
},
"pnpm": {
"overrides": {
"@sveltejs/vite-plugin-svelte": "^5.0.3"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"engines": {
"node": ">=18.14.1"
}
}