-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1004 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1004 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
{
"name": "ruta-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev-vue": "pnpm run --filter play-vue dev",
"build-vue": "pnpm run --filter play-vue build",
"preview-vue": "pnpm run --filter play-vue preview",
"dev-svelte": "pnpm run --filter play-svelte dev",
"build-svelte": "pnpm run --filter play-svelte build",
"preview-svelte": "pnpm run --filter play-svelte preview",
"fmt": "oxfmt",
"fmt-check": "oxfmt --check",
"lint": "oxlint --type-check",
"lint-fix": "oxlint --type-check --fix",
"typecheck": "pnpm run -r --parallel typecheck",
"test": "pnpm run -r --parallel test"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@tsconfig/node-lts": "24.0.0",
"@types/node": "25.0.10",
"@vitejs/plugin-vue": "6.0.3",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"@vue/tsconfig": "0.8.1",
"oxfmt": "0.27.0",
"oxlint": "1.42.0",
"typescript": "5.9.3",
"vite": "^7",
"vitest": "4.0.18"
}
}