-
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) · 805 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 805 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": "elysia-nuxt",
"version": "1.0.0",
"description": "Monorepo con Elysia.js (backend) y Nuxt (frontend)",
"private": true,
"scripts": {
"dev": "nx run-many -t dev",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"start": "nx run-many -t start",
"dev:backend": "nx dev backend",
"dev:frontend": "nx dev frontend",
"build:backend": "nx build backend",
"build:frontend": "nx build frontend",
"graph": "nx graph"
},
"keywords": [
"elysia",
"nuxt",
"bun",
"monorepo"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"@nx/eslint": "22.1.1",
"@nx/nuxt": "22.1.1",
"@nx/vite": "22.1.1",
"eslint": "~9.39.1",
"nuxt": "^4.2.1",
"nx": "22.1.1"
}
}